:root {
    --primary-color: #37556f;
    --primary-color-hex: 55,85,111;
    --primary-color-light: #cadbde;
    --primary-color-lighter: #F2F2F2;
    --primary-color-background: #dae5e7;
    --primary-color-light-hex: 202,219,222;
    --secondary-color: #bb9230;
    --secondary-color-hex: 188,147,49;
    --highlight-color: #575B53;
    --border-light: #ced4da;
    --gray-color: #868A7F;

    --group-color: #AFBBC5;
    --in-color: #C3CCD4;
    --out-color: #D7DDE2;
    --total-color: #DFDFDF;
    --red-color: #C1564C;
    --red-warning-light: #F0D5D2;
    --text-dark-color: #404040;
    --even-row-color: #ECECEC;
    --odd-row-color: #F2F2F2;

    --cancel-btn: #404040;
}

.swal2-shown {
    padding-right: 0px !important;
}

body {
    font-family: Inter, 'Segoe UI', Arial, sans-serif;
    /*font-family: 'Segoe UI', Arial, sans-serif;*/
    /*font-family: Moccha-SansSerif, sans-serif;*/
    font-size: 0.9rem;
}

.modal-backdrop {
    z-index:0;
}

.red-circle {
    width:10px;
    height:10px;
    border-radius:10px;
    background:red;
}

html {
  font-size: 14px;
}

footer {
    text-align: center;
}

.navbar {
    padding: 0px !important;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  /*background-color: var(--primary-color-light);*/
  background: var(--primary-color-background);
  height: 100%;
  width: 100%;
} 

.validation-summary-errors ul{
    list-style-type:none;
}

.error-border {
    border-color: red !important;
}

.multiple-dropdown button {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    height: 58px !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.25rem;
}

.readonly-bg {
    background-color: #e9ecef;
}

    .readonly-bg:focus {
        background-color: #e9ecef;
        border: 1px solid #ced4da;
        box-shadow: none;
    }

/*#region Ellipsis Menu */
.tabulator-cell[tabulator-field="invoiceSummary"] {
    overflow:visible !important;
    white-space:normal !important;
}
.ellipsis-btn {
    border: none;
    background: transparent;
}

    .ellipsis-btn::before {
        display: none !important;
    }

.ellipsis-menu {
    min-width:100px;
    font-size:10px;
    text-align:center;
    position:fixed !important;
}

.ellipsis-menu li:active {
    background-color: var(--secondary-color);
}

/*#endregion Ellipsis Menu*/

/*Start Global Classes*/


.white-container{
    background:white;
    padding:20px 50px 50px 50px;
    border-radius: 10px;
}

.white-container30 {
    background:white;
    padding:30px;
    border-radius:10px;
}

.white-container2050 {
    background: white;
    padding: 20px 20px 50px 20px;
    border-radius: 10px;
}
.gray-text {
    color: var(--gray-color);
}
.primary-color {
    color: var(--primary-color);
}

.secondary-color-hover:hover {
    color: var(--secondary-color);
}

.primary-color-background {
    background-color: var(--primary-color);
}

.primary-color-background:hover, .primary-color-background:focus-visible {
    background-color:var(--secondary-color);
}

.nav-link {
    color:var(--primary-color);
}

.nav-pills .nav-link.active, .nav-pills.show>.nav-link{
    color:white;
    background-color:var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.secondary-color-background {
    background-color: var(--secondary-color);
}

.primary-color-light {
    color: var(--primary-color-light);
}

.primary-color-light-background {
    background-color: var(--primary-color-light);
}

.white-txt {
    color: white;
}

.color-red {
    color: rgb(206, 21, 21);
}

.color-green {
    color: green;
}

.background-green {
    background-color: green !important;
}

.background-yellow {
    background:yellow;
}

.big-btn {
    width: 100px;
    height: 100px;
    border-radius: 5px;
}

.dark-action-btn {
    border-radius: 20px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    box-shadow: 3px 3px 5px gray;
    padding:5px 20px
}

    .dark-action-btn:hover {
        background: var(--primary-color);
        color: white;
    }

    .dark-action-btn:active {
        transform: scale(0.98);
        box-shadow: none;
        background: var(--primary-color) !important;
        border: 1px solid var(--primary-color) !important;
        color: white !important;
    }

.dark-confirm-btn {
    border-radius: 10px !important;
    background: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: white !important;
    box-shadow: 3px 3px 5px gray !important;
    padding: 5px 20px !important;
}

    .dark-confirm-btn:hover {
        background: var(--primary-color) !important;
        color: white !important;
    }

    .dark-confirm-btn:active {
        transform: scale(0.98) !important;
        box-shadow: none !important;
        background: var(--primary-color) !important;
        border: 1px solid var(--primary-color) !important;
        color: white !important;
    }

.gray-cancel-btn {
    border-radius: 10px !important;
    background: var(--gray-color) !important;
    border: 1px solid var(--gray-color) !important;
    color: white !important;
    box-shadow: 3px 3px 5px gray !important;
    padding: 5px 20px !important;
}

    .gray-cancel-btn:hover {
        background: var(--gray-color) !important;
        color: white !important;
    }

    .gray-cancel-btn:active {
        transform: scale(0.98) !important;
        box-shadow: none !important;
        background: var(--gray-color) !important;
        border: 1px solid var(--gray-color) !important;
        color: white !important;
    }

.action-btn {
    border-radius: 20px;
    background: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 3px 3px 5px gray;
    padding: 5px 20px;
}

    .action-btn:hover {
        background: var(--primary-color);
        color: white;

    }

    .action-btn:active {
        transform:scale(0.98);
        box-shadow:none;
    }

.white-square-btn {
    background: white;
    width: 40px;
    height: 40px;
    margin: 5px;
    box-shadow: 2px 2px 4px rgba(0,0,0,25%);
    font-size: 20px;
    padding: 0;
    color: var(--primary-color);
}

    .white-square-btn:hover {
        background: var(--primary-color);
        /*border: 1px solid gray;*/
        color: white;
    }

    .white-square-btn:active {
        box-shadow: none;
        border: none;
        transform: translate(2px, 2px);
        background: var(--primary-color) !important;
        color: white !important;
    }

.dark-square-btn {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    margin: 5px;
    box-shadow: 2px 2px 4px rgba(0,0,0,25%);
    font-size: 20px;
    padding: 0;
    color: white;
}

    .dark-square-btn:hover {
        background: var(--secondary-color);
        /*border: 1px solid gray;*/
        color: white;
    }

    .dark-square-btn:active {
        box-shadow: none;
        border: none;
        transform: translate(2px, 2px);
        background: white !important;
        color: var(--primary-color) !important;
    }

.primary-border {
    border: 1px solid var(--primary-color);
}

.rotatedText {
    writing-mode: vertical-rl;
    transform-origin: 10px 70px;
    transform: rotate(180deg);
}

.title {
    overflow:hidden;
    text-align:center;
    text-transform:uppercase;
    font-size:3rem;
    color:var(--primary-color);
}

.title > span {
    position: relative;
    display:inline-block;
}

.title > span:before, .title > span:after {
    content: '';
    position:absolute;
    top:50%;
    border-bottom:1px solid var(--primary-color);
    width: 100vw;
    margin: 0 20px;
}

.title > span:before {
    right: 100%;
}

.title > span:after {
    left: 100%;
}
/*Subtitle*/
.subtitle {
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    color: var(--primary-color);
}

    .subtitle > span {
        position: relative;
        display: inline-block;
    }

        .subtitle > span:before, .subtitle > span:after {
            content: '';
            position: absolute;
            top: 50%;
            border-bottom: 1px solid var(--primary-color);
            width: 10vw;
            margin: 0 20px;
        }

        .subtitle > span:before {
            right: 100%;
        }

        .subtitle > span:after {
            left: 100%;
        }
    .subtitle.secondary-color {
        color: var(--secondary-color);
    }

/*Subtitle left*/
.subtitle-left {
    overflow: hidden;
    text-transform: uppercase;
    font-size: 24px;
    color: var(--primary-color);
}

    .subtitle-left > span {
        position: relative;
        display: inline-block;
    }

        .subtitle-left > span:before, .subtitle-left > span:after {
            content: '';
            position: absolute;
            top: 50%;
            border-bottom: 1px solid var(--primary-color);
            width: 10vw;
            margin: 0 20px;
        }

        .subtitle-left > span:before {
            right: 100%;
        }

        .subtitle-left > span:after {
            left: 100%;
        }

    .subtitle-left.secondary-color {
        color: var(--secondary-color);
    }
.highlight-field {
    border: 1px solid black !important;
    background:rgba(255,255,0,0.2) !important;
}

#flock-details-form .form-control.highlight-field:focus {
    border: 1px solid black;
    background: rgba(255,255,0,0.2);
}

.width-800 {
    width:800px !important;
}

.headerTitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: bold;
}
/*End Global Classes*/

/*SWAL Start*/
.swal2-popup {
    width: 325px ;
}

.swal2-title {
    color: var(--gray-color) !important;
    font-weight: normal !important;
    font-size: 1em !important;
}

.swal2-icon {
    font-size: 0.6em;
    color: var(--secondary-color) !important;
    border: 2px solid var(--secondary-color) !important;
}

.swal2-popup.report-popup {
    width: 32em !important;
}

/*SWAL End*/

/*Tabulator Start*/

.tabulator-row-even {
    background-color: rgba(var(--primary-color-light-hex), 0.4);
}

.tabulator-row.tabulator-selected {
    background-color: var(--secondary-color) !important;
}

.tabulator {
    border-radius: 5px;
}

.tabulator-col {
    /*height: 40px;*/
    color: white;
    /*text-transform: uppercase;*/
    /*padding: 5px;*/
    border: none !important;
    background: var(--primary-color) !important;
    justify-content:center !important;
}

.tabulator-col:hover {
    background: rgba(var(--primary-color-hex), 0.8) !important;
}

.tabulator-cell:not(.tabulator-validation-fail):not(.other-table-validation-failed) {
    border:none !important;
}

.thirdParty-tab-cell {
    border:inherit;
}

.tabulator {
    font-size: 12px !important;
}

.tabulator-header{
    font-weight:normal !important;
    min-height:35px !important;
}

.tabulator-headers, .tabulator-col {
    min-height:35px !important;
    /*text-align:center;*/
}

.tabulator-col-title {
    /*white-space: break-spaces !important;*/
}

.tabulator-validation-fail {
    border: none !important;
    background: var(--red-warning-light);
}

/*Dark Tabulator Theme*/
.dark-tabulator .tabulator-row-even:not(.tabulator-group) {
    background-color: var(--even-row-color);
}

.dark-tabulator .tabulator-row-odd:not(.tabulator-group) {
    background-color: var(--odd-row-color);
}

/*Tabulator End*/

/*Modals Start*/
/*#addBreedFormContainer .modal-header, #addUserFormContainer .modal-header, #addQACollapseContainer .modal-header, #updateRateFormContainer .modal-header {*/
.modal-header {
    border-bottom: none;
    padding: 0;
}

    /*#addBreedFormContainer .modal-header .btn-close, #addUserFormContainer .modal-header .btn-close, #addQACollapseContainer .modal-header .btn-close, #updateRateFormContainer .modal-header .btn-close {*/
    .modal-header .btn-close {
        padding: calc(var(--bs-modal-header-padding-y) * 2) calc(var(--bs-modal-header-padding-x) * 1) 0 calc(var(--bs-modal-header-padding-x) * 0.5);
        margin: calc(-0.01 * var(--bs-modal-header-padding-y)) calc(-0.01 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto;
    }

/*Modals End*/

/*Shared Classes Start*/

.cursorPointer {
    cursor: pointer;
}

.addFormModal .modal-body {
    padding:10px 20px 10px 20px;
}

.addForm {
    width: 500px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.add-btn {
    background-color: var(--primary-color);
    color: white;
    margin-bottom: 10px;
}

.delete-btn {
    color: rgb(206, 21, 21);
}

.delete-btn:hover {
    color:var(--primary-color);
}

/*Shared Classes End*/

/*Login Form Start*/
#loginForm {
    background: white;
    border-radius: 20px;
    padding: 10px;
    height: 610px;
    width: 100%;
    min-width:1100px;
    margin-top: 100px;
}

.loginFormFields {
    padding: 30px;
    text-align: center;
}

.loginFormFields form {
    width:480px;
    margin:0 auto;
}

#login-left-side {
    position:relative;
    border-right: 1px solid lightgray;
}

#login-img-left {
    margin: 150px 0 0 150px;
    position: relative;
    background-color: rgba(255,255,255,0.75);
    border: 5px solid ghostwhite;
}

.curve {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    border-bottom-left-radius: 15px;
}

#account .form-floating input, #registerForm .form-floating input {
    margin: 10px 0;
}

#login-submit {
    background-color: var(--primary-color);
    color: white;
}

#loginForm a {
    color: gray;
    text-decoration:none;
}

#loginForm a:hover {
    color: var(--secondary-color);
}

#login-helps {
    margin-top: 10px;
}
/*Login Form End*/

/*Dashboard Start*/
#dashboard {
    background:white;
    border-radius: 10px;
    padding: 60px 60px 25px 60px;
    height:100%;
}

.dashboard-separator {
    height:170px;
    border-left:2px solid var(--primary-color);
    width:2px;
    padding:0;
    position:relative;
    top:-10px;
}

.dashboard-button {
    height: 147px;
    width: 174px;
    border-radius: 10px;
    border: 2px solid #154769;
    background: var(--primary-color);
    box-shadow: 3px 3px 3px #ccc;
    padding:16px;
    margin-bottom:35px;
}

.dashboard-button:link {
    text-decoration:none;
}

.dashboard-button:active {
    box-shadow:none;
}

.dashboard-button img {
    /*width: 40px;*/
    height: 80px;
    display: block;
    margin: 0 auto 20px auto;
}

.dashboard-button-interior{
    text-align:center;
    position:relative;
}

.dashboard-button i {
    font-size:30px;
    color:gainsboro;
    padding-top:10px;
}

.dashboard-button-title {
    color: white;
    margin: 5px auto 0px auto;
    font-size: 8pt;
    text-align: center;
    font-family: Arial;
}

/*.dashboard-button {
    height:100px;
    width:30%;
    border-radius: 15px;
    padding:5px;
    margin:15px;
    border:1px solid black;
    background-color:var(--primary-color);
    text-decoration:none;
}

.dashboard-button-interior {
    display:flex;
    justify-content:center;
    align-items:center;
}

.dashboard-button img {
    max-width: 96px;
    margin: 10px;
}

.dashboard-button-title {
    color: white;
    flex:1;
}*/

#left-side-shape {
    width: 100%;
    clip-path: polygon(47% 68%, 64% 70%, 93% 100%, 0 100%, 0 33%);
    background-color: var(--primary-color);
}

#dashboard-quick-reports {
    
}

.dashboard-notification {
    position:absolute;
    color: white;
    background:red;
    width:20px;
    height:20px;
    text-align:center;
    border-radius:10px;
    top: -23%;
    left:-19%;
    font-family: Lato;
}
.dashboard-notification-text {
    font-size: 0.8rem;
}

#bulletins {
    margin-bottom: 5px;
}

.bulletin {
    background-color: beige;
    border: 1px solid #6C4F00;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 5px;
    --bs-gutter-x:0;
}

.bulletin-text {
    align-self:center;
}

.bulletin-icon{
    align-self:center;
}

.bulletin-icon img{
    height:40px;
}
/*Dashboard End*/
/*User Administration Start*/
.permissions-container {
    justify-self: center;
}

.permission-checks .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: black;
}

.permissions-confirm-btn {
    background-color: var(--primary-color) !important;
}

    .permissions-confirm-btn:focus {
        box-shadow: 0 0 0 3px rgba(var(--secondary-color-hex),1) !important;
    }

.permissions-cancel-btn {
    background-color: var(--highlight-color) !important;
}

#addUserRoles-container {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 10px 10px 2px 10px;
}

#addUserRoles-container p {
    opacity: 0.65;
    transform: scale(.85) translateY(-.5rem) translateX(-2.2rem);
    margin-bottom:0;
}

/*User Administration End*/

/*Breeds Start*/


/*Breeds End*/

/*Contacts Start*/


#contact-list-container {
    /*width: 400px;*/
}

#contact-list-table {
    width: 400px;
}

#contact-list-sidebar, #groups-list-sidebar, #flocks-producer-list-sidebar, #weeklyReport-list-sidebar {
    font: bold 15px Sans-Serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--secondary-color);
    color: white;
    padding: 45px 10px;
    margin: 0 0 20px 0;
    line-height: 24px;
    /*min-height:950px;*/
    width:33px;
    border-right:3px solid var(--primary-color-light)
}

#contact-list-sidebar-title button, #groups-list-sidebar-title button, 
#flocks-producer-list-sidebar-title button, #weeklyReport-list-sidebar-title button {
    box-shadow: none;
    margin-left: -4px;
}

#table-collapse-container, #groups-collapse-container, 
#flocks-producer-list-collapse-container, #weeklyReport-table-collapse-container {
    padding: 0;
    /*overflow-y: auto;
    overflow-x: hidden;*/
}

#contact-details-isActive:checked {
    background-color: var(--primary-color);
}

#contacts-users-table.tabulator, #contact-list-table.tabulator{
    border: none;
}

#contact-details-form, #groups-details-form {
    padding: 5px;
}

#contact-details-form .row label, #groups-details-form .row label, #flock-details-form .row label, #create-flock-form .row label {
    left: auto;
}

#contact-details-tabs .nav-link {
    background-color: var(--primary-color-lighter);
    color: var(--primary-color);
    border-color:var(--primary-color-light);
    border:none;
}

#contact-details-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

#contact-details-form .form-floating>.form-control {
    height:calc(3rem + 2px);
}

#contacts-groups-table {
    
}

.premiseToggle {
    border:none;
    background:none;
}

.left-auto {
    left:auto !important;
}

#add-premise-container {
    background:var(--primary-color-light);
    padding:10px;
    border-radius:10px;
    margin-top:10px;
}

#add-premise-container .row {
    margin-right:auto;
}

#add-premise-container hr {
    margin-top:0;
}

.subPremise-table .tabulator-col:hover {
    background:var(--primary-color) !important;
}

.subPremise-table .add-subpremise-btn {
    padding:0;
}

.add-subpremise-btn .fa-plus-circle {
    margin-left: 10px;
}

#contact-details-premisesId .row,
#contact-details-farmAddresses .row,
#contact-details-pulletAddresses .row,
#contact-details-thirdPartyPulletAddresses .row,
#contact-groups-container .row {
    --bs-gutter-x: 0;
}

#contact-details-premisesId button {
    margin-left:10px;
}

#contact-details-thirdPartyPulletAddresses .addedOption, #contact-details-thirdPartyPulletAddresses select {
    max-width: 200px;
}

/*#region Toggle switch */

/* The switch - the box around the slider */
.contact-switch {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 20px;
}

    /* Hide default HTML checkbox */
    .contact-switch input {
        /*opacity: 0;*/
        width: 0;
        height: 0;
    }

/* The slider */
.contact-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 6px;
    bottom: 0;
    background-color: var(--primary-color-lighter);
    -webkit-transition: .4s;
    transition: .4s;
}

    .contact-slider:before {
        position: absolute;
        content: "";
        height: 14px;
        width: 14px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

#contact-toggleReportList2:before {
    content: "Show Inactive";
    color: var(--primary-color);
    position: absolute;
    top: 3px;
    z-index: 1000;
    font-size: 10px;
    padding-left: 25px;
    -webkit-transition: .4s;
    transition: .4s;
}

#contact-toggleReportList2:checked::before {
    content: "Hide Inactive";
    color: white;
    position: absolute;
    top: 3px;
    z-index: 1000;
    font-size: 10px;
    padding-left: 8px;
}

#contact-toggleReportList2:checked + .contact-slider {
    background-color: var(--primary-color);
}

#contact-toggleReportList2:focus + .contact-slider {
    /*box-shadow: 0 0 1px #2196F3;*/
}

#contact-toggleReportList2:checked + .contact-slider:before {
    -webkit-transform: translateX(73px);
    -ms-transform: translateX(73px);
    transform: translateX(73px);
}

#contact-toggleReportList2:not(:checked) + .contact-slider:before {
    background-color: var(--primary-color);
}

/* Rounded sliders */
.contact-slider.round {
    border-radius: 14px;
}

    .contact-slider.round:before {
        border-radius: 50%;
    }
/*#endregion Toggle switch */

  /*Create Contact Start*/
#create-contact-form .row label {
    left: auto;
}
  /*Create Contact End*/
  /*Contact Group Admin Start*/
.contact-group-start-hidden {
    display:none;
}

#contact-groups-container {
    max-width:650px;
}
  /*Contact Group Admin End*/
/*Contacts End*/

/*Flock Management Start*/
.flock-input .choices__inner {
    min-height: 57px;
    border-radius: 0.375rem;
    background: white;
}

#flock-details-form hr {
    margin: 20px 0;
}

#flocks-producer-rotatedText {
    transform-origin: 10px 59px;
}

@media (min-width: 1400px) {
    #flock-list-table {
        width: 980px;
    }
}

@media (max-width: 1399px) {
    #flock-list-table {
        width: 800px;
    }
}

@media (max-width: 1199px){
    #flock-list-table {
        width: 620px;
    }
}

#flock-list-table .tabulator-col-title {
    font-size: 10px;
}

#flocks-container {
    /*justify-content:center;*/
}

#flocks-producer-list-container {
    padding-left: var(--bs-gutter-x);
}

#flock-details-container {
    margin-right:0;
}

#flock-list-table .tabulator-col-sorter{
    display: none;
}

.glowing-border {
    animation: pulse-animation 2s infinite;
    animation-timing-function: linear;
}

@keyframes pulse-animation {
    0% {
        border: 4px solid var(--secondary-color);
    }

    50% {
        border: 4px solid white;
    }
    100% {
        border: 4px solid var(--secondary-color);
    }
}
/*Flock Management End*/
/*Multi Select Start*/
.mt-100 {
    margin-top: 100px
}

.choices__list--multiple .choices__item[data-deletable] {
    background-color: var(--primary-color);
    border:1px solid var(--primary-color-light);
}

.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
    border-left: 1px solid white !important;
}

.choices[data-type*=select-multiple] .is-highlighted {
    background-color: var(--secondary-color) !important;
    border:1px solid var(--primary-color) !important;
}

.choices__input {
    background: rgba(0,0,0,0) !important;
}
/*Multi Select End*/

/*Industry Settings Start*/
#industrySettings-container .card {
    border:none;
}

.biosecurity-0:before {
    content: url(/images/Ball_Green.png);
}

#industry-grid .card {
    width:600px;
    margin-bottom:10px;
}

#gst-rate-table, #levy-rate-table, #specialty-levy-rate-table {
    overflow: visible;
}

#industrySettings-container .card-title {
    color: var(--secondary-color);
}

#period-pricing-container .form-floating>label {
    padding: 1rem 1.5rem;
}

.newPeriodPricingFormContainer {
    border:1px solid var(--border-light);
}

.newPeriodPricingFormContainer label {
    font-size: 10px;
    font-weight:bold;
    padding-left:5px;
}

#period-pricing-table .tabulator-col-title {
    /*white-space:break-spaces !important;*/
}

.bio-0 {
    content: url(/images/icon_bio_green.svg);
    height: 30px
}

.bio-1 {
    content: url(/images/icon_bio_yellow.svg);
    height: 30px
}

.bio-2 {
    content:url(/images/icon_bio_red.svg);
    height:30px
}

.tax-required:after {
    content: 'required';
    color: red;
    font-size:8px;
    float:right;
}

#industry-status-card {
    width: 300px;
}

.weightInput {
    
}

.breaker-eggs-form-header, .chepLevy-form-header {
    text-align: center;
    background: var(--primary-color);
    height: 40px;
    margin: 0;
    border: 1px solid #999;
    align-items: center;
}

.breaker-form-title, .chepLevy-form-title{
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}



.breaker-category {
    
}

.breaker-price {
    
}

.round-button {
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 18px;
    z-index: 10;
    border: none;
    background: var(--primary-color);
    border-radius: 15px;
    box-shadow: 4px 4px 4px rgba(0,0,0,25%);
    color: white;
}

    .round-button:hover {
        background: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        padding: 0;
    }

    .round-button:active {
        transform: scale(0.98);
        box-shadow: none;
        background: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        padding: 0;
    }

#dataValidation-grid .nav-item .active {
    background: var(--primary-color);
    color: white;
}

#dataValidation-grid label {
    font-size: 10px;
    font-weight: bold;
    padding-left: 5px;
}

.dataValidationSpan {
    width: 100%;
}

.dataValidationSpan p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    text-align: left;
}

.validationDeleteButton {
    font-size: 12px;
    padding: 0 0.75rem;
}
/*Industry Settings End*/
/*Reports Start*/
@media (max-width: 1399px) {
    .report-grid .card {
        width: 500px !important;
    }

    .report-grid .h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 1199px){
    .report-grid .vr {
        display: none;
    }
}

#customReport-spinner {
    position:absolute;
    top:min(50%, 800px);
    height: 4rem;
    width: 4rem;
    z-index: 1000;
}

#groupName {
    border: 1px solid #ced4da !important;
    border-radius: .375rem;
}

    #groupName select {
        /*TODO - Need to make it look like a floating form*/
        height: 30px !important;
        position: relative !important;
        top: 23px !important;
        padding-left: 0.5rem !important;
    }

    #groupName input {
        padding: 0 .75rem !important;
        top: auto !important;
        margin-bottom: 4px !important;
        height: auto !important;
        font-size: 1rem !important;
    }

#groupNameLabel {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem 0.75rem;
    overflow: hidden;
    text-align: start;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out,transform .1s ease-in-out;
} 

.report-grid .card {
    width: 600px;
    height: 68px;
    margin-bottom: 10px;
    -webkit-box-shadow: 4px 3px 5px -3px #000000;
    box-shadow: 4px 3px 5px -3px #000000;
}

.report-grid .card-header {
    background: var(--primary-color-light);
}

.filterGroup {
    margin:0;
}

.filterGroup fieldset {
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    min-width: initial;
    padding: 10px;
    margin: 0 2px 10px 2px;
}

.filterGroup legend {
    font-size:0.9rem;
    float:none;
    width:initial;
    padding:2px;
    margin:initial;
    line-height:initial;
}

.circlePlus-btn {
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 18px;
    z-index: 10;
    border: none;
    background: var(--primary-color);
    border-radius: 15px;
    box-shadow: 4px 4px 4px rgba(0,0,0,25%);
    color: white;
}

    .circlePlus-btn:hover {
        background: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        padding:0;
    }

    .circlePlus-btn:active {
        transform: scale(0.98);
        box-shadow: none;
        background: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }

.selectAllLabel {
    color: var(--secondary-color);
}

.filterSet .col-auto, .filterFlag .col-auto {
    align-self: center;
}

.flag {
    font-weight:bold;
    color: red;
}

.optgroup .label {
    cursor: default;
}

.optgroup .label:hover {
    background-color: #efefef;
}

.collapse-all {
    text-decoration: none;
    text-transform: lowercase;
    font-size:.9em;
    padding-left:5px;
}

.collapse-all:hover {
    text-decoration: underline;
}

/*Custom Report Buttons Start*/
.report-header-options {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    margin: 5px;
    box-shadow: 2px 2px 4px rgba(0,0,0,25%);
    font-size: 20px;
    padding: 0;
    color: white;
}

    .report-header-options:hover {
        background: white;
        /*border: 1px solid gray;*/
    }

    .report-header-options:active {
        box-shadow: none;
        border: none;
        transform: translate(2px, 2px);
    }

#report-header-options-row {
    --bs-gutter-x: 0;
}

.report-header-options-group {
    align-items: center;
    width:40px;
}

    .report-header-options-group button {
        background: var(--primary-color);
        height: 40px;
        box-shadow: 2px 2px 4px rgba(0,0,0,25%);
        font-size: 20px;
        padding: 0;
        color: white;
    }

.toolbar-report-load {
    height: 40px;
    align-self: center;
    margin: 5px;
}

/*Weekly select buttons Start*/
.nestedColumnSelect {
    border: 1px solid #ced4da !important;
    height: 38px;
    font-size: 0.7rem;
    min-width: 200px;
}
.category-span {
    display:block;
    font-size: 0.6rem;
    color:var(--secondary-color);
}
.rowField-span {
    
}
/*Weekly select buttons End*/
/*Shared slider Start*/
/*#region Toggle switch */
/* The switch - the box around the slider */
.customReport-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 20px;
    align-self: center;
}

    /* Hide default HTML checkbox */
.customReport-switch input {
    /*opacity: 0;*/
    width: 0;
    height: 0;
}

/* The slider */
.customReport-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 6px;
    bottom: 0;
    background-color: var(--primary-color-lighter);
    -webkit-transition: .4s;
    transition: .4s;
}

    .customReport-slider:before {
        position: absolute;
        content: "";
        height: 14px;
        width: 14px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

.customReport-input:before {
    content: "Private";
    color: var(--primary-color);
    position: absolute;
    top: 3px;
    z-index: 1000;
    font-size: 10px;
    padding-left: 25px;
    -webkit-transition: .4s;
    transition: .4s;
}

.customReport-input:checked::before {
    content: "Shared";
    color: white;
    position: absolute;
    top: 3px;
    z-index: 1000;
    font-size: 10px;
    padding-left: 8px;
}

.customReport-input:checked + .customReport-slider {
    background-color: var(--primary-color);
}

.customReport-input:focus + .customReport-slider {
    /*box-shadow: 0 0 1px #2196F3;*/
}

.customReport-input:checked + .customReport-slider:before {
    -webkit-transform: translateX(44px);
    -ms-transform: translateX(44px);
    transform: translateX(44px);
}

.customReport-input:not(:checked) + .customReport-slider:before {
    background-color: var(--primary-color);
}

/* Rounded sliders */
.customReport-slider.round {
    border-radius: 14px;
}

    .customReport-slider.round:before {
        border-radius: 50%;
    }
/*#endregion Toggle switch */
    /*Shared slider End*/
/*Custom Report Buttons End*/

/*Chep Weekly report Start*/
#chep-weekly-rpt-options button {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    height: 58px !important;
}

#chep-table-container .tabulator-tableholder {
    overflow: inherit;
}
/*Chep Weekly report End*/
/*Intraprovincial Report Start*/
#intraprovincial-rpt-options button {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    height: 58px !important;
}

#purchasesSales-container .tabulator-tableholder {
    overflow:inherit;
}
/*Intraprovincial Report End*/

/*Weekly Report Summary Start*/
#summary-rpt-options button {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    height: 58px !important;
}

/*Weekly Report Summary End*/
/*CHEP Levy Report Start*/

/*CHEP Levy Report Start*/
/*Reports End*/

/*#region QA*/
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/*#endregion QA*/



