@font-face {
    font-family: 'Basis Grotesque';
    src: url('/fonts/basis-grotesque-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Basis Grotesque Medium';
    src: url('/fonts/basis-grotesque-medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Value Serif Medium';
    src: url('/fonts/value-serif-medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bite_branded, .bite_branded p {
    font-family: 'Basis Grotesque', sans-serif;
    font-size: 14px;
    color: #1E2434;
}
.bite_branded h1 {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 32px;
    color: #1E2434;
}
.bite_branded h2 {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 24px;
    color: #1E2434;
    font-weight: 400;
}
.bite_branded h3 {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #1E2434;
}
.bite_branded h4 {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 16px;
    color: #1E2434;
}
.bite_branded h5 {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 14px;
    color: #1E2434;
}
.bite_branded h5.muted {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 14px;
    color: rgba(30, 36, 52, 0.5);
}
.uppercase {
    text-transform: uppercase;
}
.uppercase::placeholder {
    text-transform: none;
}
.bite_branded .dropdown-menu > li > a {
    color: #1E2434;
    font-family: 'Basis Grotesque Regular', sans-serif;
}

/* Alerts */
.pgn-wrapper .alert-success {
    background: #1E2434 !important;
    color: #fff !important;
    border-radius: 30px;
    padding: 15px 20px;
    line-height: 16px;
    font-family: 'Basis Grotesque Medium', sans-serif;
}
.pgn-wrapper .alert-warning {
    background: #FDF5E4 !important;
    color: #EEAD2C !important;
    border-radius: 30px;
    padding: 15px 20px;
    line-height: 16px;
    font-family: 'Basis Grotesque Medium', sans-serif;
}
.pgn-wrapper .alert-error {
    background: #FDE7E4 !important;
    color: #E44A4A !important;
    border-radius: 30px;
    padding: 15px 20px;
    line-height: 16px;
    font-family: 'Basis Grotesque Medium', sans-serif;
}
.pgn-wrapper .alert > button {
    background: none;
    box-shadow: none;
    border: none;
    float: right;
    padding: 0px;
    line-height: 17px;
    margin-left: 10px;
}
.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}
.text-danger {
    color: #dc3545 !important;
}
.content_container p.terms_and_conditions {
    color: rgba(30, 36, 52, 0.65);
    margin-top: 10px;
    margin-bottom: 0px;
    font-family: 'Basis Grotesque', sans-serif;
    font-weight: 400;
    line-height: 18px;
    font-size: 14px;
    color: rgba(30, 36, 52, 0.65);
}
.content_container p.terms_and_conditions a {
    text-decoration: underline;
    color: rgba(30, 36, 52, 0.8);
}

/* Custom Checkbox Styling */
.checkbox_container {
    position: relative;
    display: inline-block;
}
.checkbox_container input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}
.checkbox_container label {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #FFF;
    border-radius: 4px;
    border: 1px solid #1E2434;
    cursor: pointer;
    position: relative;
    margin-bottom: 0px;
    /* transition: all 0.2s ease; */
}

.checkbox_container input[type="checkbox"]:checked + label {
    background-color: #F7CD61;
    border: 1px solid rgba(30, 36, 52, 0.1);
    margin-bottom: 0px;
}

.checkbox_container input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    width: 6px;
    height: 10px;
    border: solid #1E2434;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Buttons */
.bite_branded .btn-complete {
    background-color: #FFCE6E !important;
    border: 1px solid #FFCE6E !important;
    color: #1E2434 !important;
    font-family: 'Basis Grotesque Medium', sans-serif;
}
.bite_branded .btn.btn-lg {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    height: 56px;
    padding-top: 16px;
    padding-bottom: 16px;
}
.bite_branded .btn-complete:hover {
    background-color: rgba(255, 206, 110, 0.8) !important;
    color: #1E2434 !important;
}
.bite_branded .btn-secondary {
    background-color: #F3EEE5 !important;
    color: #1E2434 !important;
    border: none !important;
    font-family: 'Basis Grotesque Medium', sans-serif;
    padding: 10px 18px;
    border-radius: 5px;
}
.bite_branded .btn-secondary:hover {
    background-color: #EBE3D6 !important;
}
.bite_branded .btn.btn-icon {
    background-color: transparent;
    color: #1E2434;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}
.bite_branded .btn.btn-sm {
    padding: 15px 18px;
    font-size: 13px;
    line-height: 16px;
}

/* Utilities */
.h-100 {
    height: 100% !important;
}
.d-flex {
    display: flex;
}
.justify-content-end {
    justify-content: flex-end;
}
.justify-content-between {
    justify-content: space-between;
}
.align-items-center {
    align-items: center;
}
.row-sm-gutters {
    margin-right: -5px;
    margin-left: -5px;
}
.row-sm-gutters [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
}
.row-no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.row-no-gutters [class*=col-] {
    padding-right: 0;
    padding-left: 0;
}
.white_shadow_container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}
.white_shadow_container_content {
    padding: 20px;
}
.white_shadow_container_header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}
.white_shadow_container_header span {
    font-size: 13px;
    margin-bottom: 3px;
    display: inline-block;
}
.white_shadow_container:not(.in) .white_shadow_container_header {
    border-bottom: none;
}
/* .white_shadow_container_header  */
.bite_branded .alert-secondary {
    background-color: #F3EEE5 !important;
    color: #1E2434 !important;
    border-radius: 10px;
    padding: 15px;
    font-family: 'Basis Grotesque Regular', sans-serif;
}
.divider {
    height: 5px;
    background: #FCF9F4;
    margin: 40px 0px;
}
.divider.sm {
    margin: 15px 0px;
}
.divider.m-t-0 {
    margin-top: 0px;
}
@media only screen and (min-width: 768px) {
    .bite_branded form .row {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 768px) {
    .bite_branded form .row {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 768px) {
    .bite_branded form .row [class*='col-']:last-child {
        padding-right: 15px;
    }
}
@media only screen and (min-width: 768px) {
    .bite_branded form .row [class*='col-']:first-child {
        padding-left: 15px;
    }
}
@media only screen and (min-width: 768px) {
    .bite_branded form .row [class*='col-']:last-child {
        padding-right: 15px;
    }
}
@media only screen and (min-width: 768px) {
    .bite_branded form .row [class*='col-']:first-child {
        padding-left: 15px;
    }
}

/* Modals */
.bite_branded .modal-backdrop {
    z-index: 1209 !important;
}
.bite_branded .modal {
    z-index: 1210 !important;
}
.bite_branded #rule_modal,
.bite_branded #promotion_claim_modal {
    z-index: 1230 !important;
}
.bite_branded .modal-backdrop ~ .modal-backdrop {
    z-index: 1215 !important;
}
.bite_branded .modal-backdrop ~ .modal-backdrop ~ .modal-backdrop {
    z-index: 1225 !important;
}
.bite_branded .select2-container--open {
    z-index: 1230;
}
.bite_branded .adjust_input .form-control {
    height: 45px;
    min-height: 45px;
    padding: 12px 15px;
}
.bite_branded .adjust_input .input-group-btn {
    position: absolute;
    right: 2px;
    top: 2px;
    width: 22px;
    z-index: 4;
}
.bite_branded .adjust_input .input-group-btn .btn {
    display: block;
    padding: 2px 7px !important;
    font-size: 11px !important;
    line-height: 12px !important;
    border-radius: 2px !important;
    background: #f0f0f0 !important;
    height: 20px !important;
    min-height: 20px !important;
}
.bite_branded .adjust_input .input-group-btn .btn.increment {
    border-top-right-radius: 6px !important;
}
.bite_branded .adjust_input .input-group-btn .btn.decrement {
    border-bottom-right-radius: 6px !important;
}
.bite_branded .datepicker.datepicker-dropdown {
    z-index: 1230 !important;
}
.datepicker.datepicker-dropdown {
    z-index: 1230 !important;
}
.bite_branded .ui-timepicker-wrapper {
    z-index: 1230 !important;
}
.bite_branded .btn-group:has(.cancel_search.hidden) .search_customers {
    border-radius: 8px;
}
.bite_branded tbody tr td:first-child .checkbox {
    padding-left: 3px !important;
}
.bite_branded table .checkbox label {
    margin-right: 0px !important;
}
.bite_branded table .checkbox label:before {
    margin-right: 0px !important;
}
.bite_branded .searchable-dropdown-menu {
    padding: 0;
    min-width: 280px;
    border-radius: 8px;
}
.bite_branded .searchable-dropdown-menu .dropdown-search-container {
    padding: 15px;
    border-bottom: 1px solid rgba(30, 36, 52, 0.1);
}
.bite_branded .searchable-dropdown-menu .dropdown-search {
    padding: 6px 12px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
}
.bite_branded .searchable-dropdown-menu .dropdown-list-items {
    max-height: 250px;
    overflow-y: auto;
    list-style: none;
    padding: 5px 0;
    margin: 0;
}
.bite_branded .searchable-dropdown-menu .dropdown-list-items li a {
    padding: 8px 15px;
    display: block;
    color: #1E2434;
    font-size: 13px;
    cursor: pointer;
}
.bite_branded .searchable-dropdown-menu .dropdown-list-items li a:hover {
    background-color: #FCF9F4;
    text-decoration: none;
}
.new_modal .load_container {
    overflow: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.new_modal .load_container::-webkit-scrollbar {
    display: none;
}
.new_modal .modal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 9999;
}
.new_modal .modal-dialog {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin: 30px auto;
}
.new_modal .modal-content {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh);
    width: 100%;
}
.new_modal .modal-body {
    padding-bottom: 107px !important;
}
.new_modal .modal-body.p-b-0 {
    padding-bottom: 0 !important;
}
.new_modal .modal-body.normal-footer {
    padding-bottom: 30px !important;
}
.new_modal .modal-body.no-footer {
    padding-bottom: 0 !important;
}

.new_modal.modal .modal-content {
    border-radius: 10px;
    overflow: hidden;
}
.new_modal h1 {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 28px;
    line-height: 30px;
    color: #1E2434;
    margin-top: 10px;
}
.new_modal h3 {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 16px;
    line-height: 18px;
    color: #1E2434;
}
.new_modal .header-container {
    border-bottom: 1px solid #ddd;
    box-shadow: none;
    padding: 25px;
    padding-top: 0;
    white-space: normal;
}
.modal-tabs-container {
    padding: 25px;
    padding-bottom: 0px;
    border-bottom: 1px solid #ddd;
}
.new_modal .modal-footer {
    padding-top: 25px !important;
    border-top: 1px solid #ddd !important;
}
.new_modal .modal-lg .select2-container {
    max-width: 850px;
    width: 100% !important;
}

/* Tabs */
.bite_branded .nav-tabs > li > a {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 14px;
    color: #1E2434;
    font-weight: 600;
    text-transform: none;
}
.bite_branded .nav-tabs > li.active > a, .bite_branded .nav-tabs > li.active > a:hover, .bite_branded .nav-tabs > li.active > a:focus {
    color: #1E2434;
}
.nav-tabs-simple > li.active:after, .nav-tabs-simple > li:hover:after {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.bite_branded .tab-pane {
    padding: 25px 0px 0px 0px;
}

/* Forms */
@media only screen and (min-width: 768px) {
    .bite_branded form .row [class*='col-']:not(:first-child), .bite_branded form .row [class*='col-']:not(:last-child) {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.select2-search--dropdown .select2-search__field {
    padding: 6px 10px;
}
.select2-search--dropdown input {
    font-size: 14px;
    color: #1E2434;
}
.bite_branded .select2-container .select2-selection.select2-selection--single {
    height: 45px;
    min-height: 45px;
    border-radius: 8px;
    border: 1px solid #ddd !important;
    padding: 7px 15px;
}
.select2-container--open .select2-dropdown--above {
    border-radius: 8px !important;
}
.bite_branded .select2-container--open .select2-selection.select2-selection--single {
    border-color: #FF7E55 !important;
}
.bite_branded .select2-container .select2-selection .select2-selection__rendered {
    font-size: 16px;
    color: #1E2434;
    padding-left: 0px;
}
.bite_branded .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}
.select2-dropdown {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 1px solid #ddd !important;
}
.bite_branded .select2-results .select2-results__option--highlighted, .bite_branded .select2-results li {
    color: #1E2434 !important;
    border-radius: 8px;
    font-size: 14px;
}
.select2-search--dropdown input {
    border-radius: 5px;
    border: 1px solid #ddd !important;
}
.select2-search--dropdown input:focus {
    border-color: #FF7E55 !important;
}
.select2-container .select2-search--inline .select2-search__field {
    margin-top: 7px;
}
.ui-timepicker-wrapper {
    width: 200px !important;
    border-radius: 5px;
}
.ui-timepicker-list li {
    padding: 3px 13px 3px 12px !important;
    cursor: pointer;
    white-space: nowrap;
    color: #1E2434;
    list-style: none;
    margin: 4px !important;
    border-radius: 3px;
    font-family: 'Basis Grotesque Regular', sans-serif;
}
li.ui-timepicker-selected, .ui-timepicker-list li:hover, .ui-timepicker-list .ui-timepicker-selected:hover {
    background-color: #F3EEE5 !important;
    color: #1E2434 !important;
}
.image-upload-container {
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    height: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.image-upload-container:hover {
    background: #fcfcfc;
}
.image-upload-container p {
    font-family: 'Basis Grotesque Regular', sans-serif;
    font-size: 14px;
    color: rgba(30, 36, 52, 0.65);
    margin-top: 10px;
    margin-bottom: 0px;
}
.image-upload-container .image-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: opacity 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.image-upload-container .image-preview-overlay p {
    color: #fff;
    font-family: 'Basis Grotesque Regular', sans-serif;
    font-size: 12px;
    line-height: 16px;
    margin-top: 10px;
    margin-bottom: 0px;
    font-style: italic;
}
.image-upload-container.has-image:hover .image-preview-overlay {
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 1;
} 
.image-preview {
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
    bottom: 10px;
}
.image-upload-container .btn {
    font-family: 'Basis Grotesque Regular', sans-serif !important;
    font-weight: 500 !important;
}

.bite_branded .form-group {
    margin-bottom: 25px;
}
.bite_branded .form-group.m-b-0 {
    margin-bottom: 0px;
}
.bite_branded .form-group input, .bite_branded .form-group textarea {
    -webkit-transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    -moz-transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    -o-transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.bite_branded .form-group input:focus, .bite_branded .form-group textarea:focus {
    border-color: #FF7E55;
    background-color: #fff;
}
.bite_branded .form-group input[readonly]:focus, .bite_branded .form-group textarea[readonly]:focus {
    border-color: #ddd;
    background-color: #f2f3f4;
}
.bite_branded .form-group select {
    width: 100%;
}
.bite_branded .form-control[disabled], .bite_branded .form-control[readonly], .bite_branded fieldset[disabled] .form-control {
    background: #EEEEEE;
    color: rgba(30, 36, 52, 0.5);
    border-color: rgba(30, 36, 52, 0.1);
}
/* .bite_branded .select2-container {
    width: 100% !important;
} */
.bite_branded .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-color: #FF7E55 !important;
}
.bite_branded .form-group label, .bite_branded label {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 14px;
    color: #1E2434;
    font-weight: 600;
    text-transform: none;
    display: block;
}
.bite_branded .form-group .radio label {
    padding-left: 30px !important;
    font-weight: 500;
}
.bite_branded .form-group > span {
    font-family: 'Basis Grotesque', sans-serif;
    font-size: 14px;
    color: rgba(30, 36, 52, 0.65);
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
}
.bite_branded .form-control {
    border-radius: 8px;
    border: 1px solid rgba(30, 36, 52, 0.1);
    padding: 12px 15px;
    height: 45px;
    min-height: 45px;
    font-family: 'Basis Grotesque', sans-serif;
    font-size: 16px;
    color: #1E2434;
}
.bite_branded .form-control.timepicker {
    height: 45px;
    min-height: 45px;
    padding: 12px 15px;
}
.bite_branded .chat-file .form-control.sm {
    padding: 6px 8px;
    height: 31px;
    min-height: 31px;
    border: 1px solid #fff;
    font-size: 14px;
    min-width: 160px;
}
.bite_branded .chat-file .form-control.sm:disabled {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}
.bite_branded textarea.form-control {
    height: auto;
    line-height: 22px;
}
.bite_branded .select2-container--open .select2-selection {
    background: #fff;
}
.bite_branded .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
    background-color: #F3EEE5;
    border: none;
}
.select2-results .select2-results__option--highlighted {
    background-color: #F3EEE5 !important;
}
.bite_branded .select2-container--open .select2-selection--multiple .select2-selection__choice {
    background-color: #F3EEE5 !important;
}
.bite_branded .select2-container .select2-selection--multiple {
    border-radius: 5px;
    border: 1px solid #ddd !important;
    padding: 5px 15px;
    min-height: 45px;
    font-family: 'Basis Grotesque Regular', sans-serif;
    font-size: 14px;
    color: #1E2434;
}
.bite_branded .ms-parent .ms-choice > span {
    padding: 8px 16px !important;
}
.ms-choice>span.placeholder {
    position: absolute;
}
.bite_branded .ms-drop {
    left: 0;
    right: 0;
    border: 1px solid #ddd;
}
.bite_branded .radio label:before {
    bottom: 0px;
}
.bite_branded .radio-item-with-description {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.bite_branded .radio-item-with-description label {
    display: flex;
    flex-direction: column;
}
.bite_branded .radio-item-with-description label:before {
    top: 0px;
}
.bite_branded .radio label {
    margin-bottom: 0px;
}
.pricing-content .radio {
    margin-bottom: 0px;
    margin-top: 0px;
}
.bite_branded .input-group-addon {
    background-color: #F3EEE5;
    border: none;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px 15px;
}
.results-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
}
.result-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    max-width: 300px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.result-item-header {
    height: 400px;
    overflow: hidden;
}
.result-item-header img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.result-item-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    width: 50px;
    height: 50px;
    border-radius: 7px;
    position: absolute;
    left: 15px;
    top: -25px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}
.result-item-content {
    padding: 40px 15px 15px 15px;
    position: relative;
    text-align: left;
}
.result-item-content p {
    font-size: 16px;
    line-height: 24px;
}

.editable_text {
    border: none; 
    background: transparent; 
    width: 100%;
    transition: background-color 0.2s ease;
    padding: 10px;
    margin: -10px;
}
.editable_text:focus {
    background-color: rgba(30, 36, 52, 0.05); /* Light grey background when focused */
    outline: none;
    border-radius: 4px;
}
.editable_text_label {
    font-family: 'Basis Grotesque Regular', sans-serif;
    font-size: 16px;
    color: rgba(30, 36, 52, 0.75);
}
.editable_text.inline-block {
    width: auto;
}
.editable_text.heading {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 30px;
    color: #1E2434;
}
.editable_text.paragraph {
    font-family: 'Basis Grotesque Regular', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(30, 36, 52, 0.75);
}
.p-l-15 {
    padding-left: 15px;
}
.p-r-15 {
    padding-right: 15px;
}
.p-l-30 {
    padding-left: 30px;
}
.p-r-30 {
    padding-right: 30px;
}
@media (max-width: 991px) {
    .m-b-sm-0 {
        margin-bottom: 0px;
    }
    .m-b-sm-10 {
        margin-bottom: 10px;
    }
    .m-t-sm-20 {
        margin-top: 20px;
    }
    .new_modal .modal-content {
        max-height: 100%;
    }
    .new_modal.modal .modal-content {
        overflow: visible;
    }
    .new_modal .load_container {
        overflow: visible;
    }
}
@media (min-width: 992px) {
    .p-l-md-15 {
        padding-left: 15px;
    }
    .p-r-md-15 {
        padding-right: 15px;
    }
    .p-l-md-30 {
        padding-left: 30px;
    }
    .p-r-md-30 {
        padding-right: 30px;
    }
}

.item_card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}
.bite-label {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 12px;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
}

/* .bite_branded .btn {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1E2434;
} */
.bite_branded .btn {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #1E2434;
    padding: 8px 35px;
    border-radius: 8px;
    border: none;
}
.bite_branded .btn.md {
    padding: 15px;
}
.bite_branded .btn-group .btn {
    padding: 8px 12px;
    line-height: 20px;
}
.bite_branded .btn.sm {
    padding: 8px 15px;
}
.bite_branded .btn i.fa-chevron-right {
    font-size: 10px;
    color: #1E2434;
}
.btn-light-cream {
    background-color: #FCF9F4;
    color: #1E2434;
    border: none;
}
.btn-light-cream:hover {
    background-color: #F4F0EA;
    border: none;
}
.btn-cream {
    background-color: #F3EEE5;
    color: #1E2434;
    border: none;
}
.btn-cream:hover {
    background-color: #EBE3D6;
    border: none;
}


.bite-label.peach {
    background-color: #FF7E55;
    color: #fff;
}
.bite-label.green {
    background-color: #6BD169;
    color: #1E2434;
}
.bite-label.plum {
    background-color: #1E2434;
    color: #fff;
}
.bite-label.caramel {
    background-color: #FFCE6E;
    color: #1E2434;
}
.bite-label.cream {
    background-color: #F3EEE5;
    color: #1E2434;
}
.bite-label.light-cream {
    background-color: #F3EEE5;
    color: #1E2434;
}

.align-middle {
    display: flex;
    align-items: center;
}

/* Toggles */
.toggle-container-with-options {
    background-color: transparent;
    transition: background-color 0.2s ease-in-out;
}
.toggle-container-with-options.disabled {
    cursor: not-allowed;
}
.toggle-container-with-options.disabled .toggle-container {
    cursor: not-allowed;
}
.toggle-container-with-options.disabled .toggle-label {
    color: rgba(30, 36, 52, 0.65);
}
.toggle-container-with-options.disabled .toggle-description {
    color: rgba(30, 36, 52, 0.32);
}
.toggle-container-with-options .toggle-container-options-content {
    padding-left: 40px;
}
.label-disabled {
    align-self: start;
    padding: 8px 12px;
}
.toggle-container-with-options.disabled .label-disabled {
    display: inline-block;
}
.toggle-container-with-options .label-disabled {
    display: none;
}
.toggle-container-with-options:not(.opposite) .toggle-container-options-content {
    padding-left: 40px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
}
.toggle-container-with-options.active:not(.opposite) > .toggle-container-options-content {
    opacity: 1;
    max-height: 10000px;
    overflow: visible;
    visibility: visible;
    transition: opacity 0.2s ease-in-out, max-height 0.3s ease-in-out;
}

.toggle-container-with-options.opposite.active .toggle-container-options-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
}
.toggle-container-with-options.opposite .toggle-container-options-content {
    opacity: 1;
    max-height: 500px;
    overflow: visible;
    visibility: visible;
    transition: opacity 0.2s ease-in-out, max-height 0.3s ease-in-out;
}

.toggle-container-options-content .form-group {
    margin-bottom: 15px;
}
.toggle-container-options-content .form-group.m-b-20 {
    margin-bottom: 20px;
}
.toggle-container-with-options.active:not(.no-active-state) {
    margin: -15px;
    padding: 15px;
    background-color: #FCF9F4;
    border-radius: 10px;
    margin-bottom: 30px;
}
.toggle-container-with-options.m-b-0.active:not(.no-active-state) {
    margin-bottom: 0px;
}

.toggle-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: #1E2434;
}
.tab-pane .toggle-container {
    margin-bottom: 30px;
}
.toggle-container.simple {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-top: 0px;
}
.text-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 10px;
}
.simple .text-content {
    margin-left: 0px;
}
.toggle-label {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1E2434;
}
.toggle {
    position: relative;
    display: inline-block;
    width: 30px;
    min-width: 30px;
    height: 18px;
    margin-bottom: 0;
    pointer-events: none;
}
.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #8E9198;
    border-radius: 34px;
    transition: .4s;
    width: 30px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
}
input:checked + .slider {
    background-color: #F9CB7B;
}
input:checked + .slider:before {
    transform: translateX(12px);
}
.toggle-text {
    font-weight: bold;
    margin-left: 5px;
    font-size: 13px;
    display: inline-block;
    font-family: 'Basis Grotesque Medium', sans-serif;
    pointer-events: none;
    line-height: 17px;
}
.toggle-description {
    font-weight: normal;
    margin-left: 0px;
    font-size: 13px;
    display: inline-block;
    pointer-events: none;
    font-family: 'Basis Grotesque Regular', sans-serif;
    color: rgba(30, 36, 52, 0.65);
    font-weight: 400;
}
.dashed-border-right {
    border-right: 1px dashed #ddd;
}
@media (min-width: 992px) {
    .dashed-border-right-md {
        border-right: 1px dashed #ddd;
    }
}
.btn-group.slider-btn-group {
    border: 1px solid rgba(30, 36, 52, 0.1);
    border-radius: 8px;
    background: transparent;
    color: #1E2434;
}
.btn-group.slider-btn-group .btn {
    background: none;
    border: none;
}
.btn-group.slider-btn-group .btn.active {
    border-color: #1E2434;
    background-color: #1E2434;
    color: #fff;
}
.btn-group.slider-btn-group .btn.active:hover {
    border-color: #1E2434;
    background-color: #1E2434;
    color: #fff;
}
.btn-group.slider-btn-group.btn-group-secondary {
    background: #fff;
}
.btn-group-secondary .btn.active {
    background-color: #F3EEE5 !important;
    color: #1E2434 !important;
}

/* AI Chat */
.chat-action-bar {
    text-align: right;
    position: relative;
}
.progress-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
}
.circular-progress {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: conic-gradient(#FFCE6E calc(var(--progress) * 1%), #F3EEE5 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-progress::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
}

.circular-progress-value {
    position: relative;
    font-size: 10px;
    font-weight: 600;
    color: #1E2434;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.circular-progress.loading::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FFCE6E;
    animation: spin 1s linear infinite;
}
.row-eq-height {
    display: flex;
    flex-wrap: wrap;
}
.row-eq-height > [class*='col-'] {
    display: flex;
    flex-direction: column;
}
#bite-loader {
    width: 150px;
    height: 150px;
    margin: 60px auto;
}
.promotion-type-card {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    margin-bottom: 10px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
}
.promotion-type-card .label {
    margin-bottom: 5px;
    align-self: flex-start;
    padding: 8px 11px;
    border-radius: 5px;
    font-family: 'Basis Grotesque Medium', sans-serif;
    color: #1E2434;
    background-color: #EBE3D6;
    margin-bottom: 10px;
    display: none;
}
.promotion-type-card i {
    font-size: 12px;
    color: #1E2434;
}
.promotion-type-card.active {
    background-color: rgba(255, 206, 110, 0.15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFCE6E;
}
.promotion-type-card h5 {
    margin-top: 0px;
    color: #1E2434;
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 14px;
    margin-bottom: 3px;
}
.promotion-type-card p {
    color: rgba(30, 36, 52, 0.65);
    font-family: 'Basis Grotesque Regular', sans-serif;
    font-size: 12px;
}
.alert-ai {
    background: linear-gradient(135deg, #F9CB7B, #FF8C64, #E57A9A, #9C89B8, #82B4FF);
    background-size: 400% 400%;
    animation: gradientAnimation 30s ease infinite;
    color: #fff;
    font-size: 14px;
    font-family: 'Basis Grotesque Medium', sans-serif;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
.alert-ai span.label {
    background-color: #fff;
    color: #1E2434;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.info-note {
    background-color: #FCF9F4;
    border-radius: 10px;
    padding: 15px 20px;
    color: #1E2434;
    font-size: 14px;
    line-height: 22px;
}
.info-note h5 {
    margin-top: 0;
    margin-bottom: 5px;
}
.info-note p {
    margin-bottom: 0;
    color: rgba(30, 36, 52, 0.7);
}
.light-cream-bg {
    background: #FCF9F4 !important;
}
.chat-container.m-t-0 {
    margin-top: 0px;
}
.chat-container.sm {
    height: 400px;
}

.chat-container.fill-space {
    height: 100%;
    animation: none;
    border-radius: 8px;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    max-height: 600px;
    position: relative;
    padding-bottom: 67px;
}
.chat-container.fill-space.has-files {
    padding-bottom: 187px;
}
.chat-container.fill-space .chat-messages {
    padding: 20px;
    border-radius: 10px;
}
.chat-files {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0px 0px 0px 0px;
}
.chat-files .chat-file {
    background: #EBE3D6;
    padding: 5px;
    border-radius: 6px;
    display: flex;
    align-items: center;
}
.chat-files .chat-file-actions {
    display: flex;
    flex-direction: row;
    margin-left: 20px;
}
.chat-files .chat-file-actions .btn-icon {
    background: none;
}
.chat-file-name {
    white-space: nowrap;
}
.chat-files-container {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    height: 100%;
}
.chat-files-header {
    padding: 30px 15px;
    border-bottom: 1px solid #F3EEE5;
    height: 184px;
    display: flex;
    flex-direction: column;
}
.chat-files-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: scroll;
    padding: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.menu-workbench-container {
    display: flex;
    flex-direction: row;
    height: 100%;
}
.menu-workbench-content {
    flex: 3;
    display: flex;
    flex-direction: column;
    padding: 30px;
}
.menu-workbench-content > div {
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.menu-workbench-files {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #F3EEE5;
}
.menu-workbench-files .chat-files-container {
    height: 100%;
}
.chat-file {
    border: 1px solid #F3EEE5;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
}
.preview-window {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #F3EEE5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.preview-window::-webkit-scrollbar {
    display: none;
}
.preview-window.p-15 {
    padding: 15px;
}
#app-preview-container {
    display: flex;
    flex: 1;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
#website-preview, #app-preview {
    border: none;
}
#website-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex: 1;
}
#app-preview {
    height: 100%;
    max-height: 731px;
    min-width: 361px;
}
iframe {
    /* Firefox */
    scrollbar-width: none;
    /* IE and Edge */
    -ms-overflow-style: none;
}

/* Webkit browsers */
iframe::-webkit-scrollbar {
    display: none;
}

@keyframes brand-glow {
    0% { box-shadow: 0 0 8px rgba(255, 206, 110, 0.7); } /* Caramel yellow */
    20% { box-shadow: 0 0 8px rgba(249, 203, 123, 0.7); } /* Peach orange */
    40% { box-shadow: 0 0 8px rgba(255, 140, 100, 0.7); } /* Red */
    60% { box-shadow: 0 0 8px rgba(130, 180, 255, 0.7); } /* Blue */
    80% { box-shadow: 0 0 8px rgba(180, 130, 255, 0.7); } /* Purple */
    100% { box-shadow: 0 0 8px rgba(255, 206, 110, 0.7); } /* Back to caramel yellow */
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px 10px 20px 10px;
    overflow: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.chat-messages::-webkit-scrollbar {
    display: none;
}

.message {
    margin-top: 24px;
    margin-bottom: 10px;
    display: flex;
}
.message-container .message {
    margin-top: 24px; /* Default top margin */
}

.message-container + .message-container .message {
    margin-top: 10px; /* Reduced margin when any message follows any message */
}

.message-container:has(.message.user) + .message-container:has(.message.assistant) .message,
.message-container:has(.message.assistant) + .message-container:has(.message.user) .message {
    margin-top: 24px; /* Full margin when message type changes */
}
.chat-messages .message-container:first-of-type .message {
    margin-top: 0px;
}
.message.user {
    justify-content: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 15px 20px;
    border-radius: 8px;
}

.user .message-content {
    background-color: #FFF;
    color: #1E2434;
    border: 1px solid rgba(30, 36, 52, 0.2);
}
.message-content {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.assistant .message-content {
    padding: 16px 20px;
    background-color: rgba(30, 36, 52, 0.05);
}
.assistant-prompt-container {
    display: flex;
    margin-left: 32px;
    max-width: 80%;
    flex-direction: row;
    flex-wrap: wrap;
}
.assistant-prompt-container .btn {
    margin-right: 6px;
    margin-bottom: 6px;
}
.message.tool-execution .message-content {
    padding: 16px 20px;
    background-color: rgba(30, 36, 52, 0.05);
    max-width: 80%;
}
.message.tool-execution i {
    color: rgba(30,36,52,0.5);
}

.system .message-content.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.chat-input {
    padding: 0px 20px 20px 20px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #fff;
}
.chat-input .chat-input-container textarea {
    border: none;
    resize: none;
}
.chat-input .chat-input-container textarea:focus {
    border: none;
    outline: none;
    background: none;
}
.chat-input .chat-input-container {
    background: #fff;
    font-family: 'Basis Grotesque', sans-serif;
    min-height: 40px;
    border: 1px solid rgba(30, 36, 52, 0.1);
    border-radius: 8px;
    position: relative;
}
.chat-input .chat-input-container .btn {
    position: absolute;
    bottom: 0px;
    right: 0px;
    top: 0px;
    z-index: 10;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    padding: 14px 18px;
}
.chat-input-wrapper {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 10;
}
.bite_branded .input-group .btn {
    height: 45px;
}

.typing-indicator {
    display: flex;
    align-items: center;
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    background-color: rgba(30, 36, 52, 0.6);
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    animation: typing 1s infinite ease-in-out;
}
.typing-indicator span:last-child {
    margin-right: 0px;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}


/* Working indicator animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced message styling */
.message.working {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px;
    margin: 8px 0;
    border-radius: 4px;
    font-style: italic;
}

.message.error {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 12px;
    margin: 8px 0;
    border-radius: 4px;
}

/* Chat controls */
.chat-controls {
    flex-wrap: wrap;
}

.chat-controls .btn {
    font-size: 12px;
    padding: 4px 8px;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #999;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Working status bar */
.ai-working-status {
    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

/* Message actions */
.message-actions {
    margin-top: 8px;
    text-align: right;
    opacity: 0.7;
}

.message-actions:hover {
    opacity: 1;
}

.message-actions .btn {
    padding: 2px 6px;
    font-size: 12px;
}

/* Form */
.bite_branded ul li:not(.select2-search), .bite_branded ol li:not(.select2-search) {
    margin-bottom: 5px;
}
.bite_branded .sidebar-menu ul li {
    margin-bottom: 0px;
}
.bite_branded ul li.nav-item {
    margin-bottom: 0px;
}

/* onboarding */
.container-sm {
    max-width: 600px;
}
.sales_person_container {
    background: #fff;
    padding: 13px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.sales_person_image {
    flex-shrink: 0;
}
.sales_person_image img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.sales_person_details {
    flex-grow: 1;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sales_person_details p {
    margin: 0;
    font-weight: 500;
}
.sales_person_actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.sales_person_actions a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
}
.welcome_container {
    margin-top: 100px;
    margin-bottom: 60px;
}
.welcome_container h1 {
    font-size: 50px;
    line-height: 56px;
    font-weight: 600;
    color: #1E2434;
    margin-bottom: 10px;
    font-family: 'Value Serif Medium', serif;
}

.pl-10 {
    padding-left: 10px !important;
}

/* Onboarding */

.select2-results .select2-results__option--highlighted, .select2-results li {
    font-size: 14px;
    color: #1E2434;
}
.select2-results .select2-results__option--highlighted {
    color: #1E2434 !important;
}
h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1E2434;
    margin-bottom: 0px;
    margin-top: 0px;
}
.completed-task { 
    background-color: #F3EEE5;
}
.completed-task .btn-secondary { 
    background-color: #EBE3D6 !important;
    color: #1E2434;
}
.completed-task.white_shadow_container {
    box-shadow: none;
}
.completed-task:hover {
    opacity: 1;
}
.completed-task .white_shadow_container_header {
    border-bottom: 1px solid #FAF4EA;
}
.complete-label {
    font-family: 'Basis Grotesque Medium';
    font-weight: 500;
}
.complete-label > i {
    color: #FFCE6E;
    font-size: 14px;
}
.menu-file-preview {
    background: #FCF9F4;
    padding: 8px 12px;
    display: inline-block;
    border-radius: 8px;
    margin-bottom: 5px;
    margin-right: 10px;
}
.onboarding-progress-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-top: 20px;
}
.onboarding-progress-label {
    font-size: 14px;
    font-weight: 500;
    color: #1E2434;
    font-weight: 600;
}
.onboarding-progress-value {
    font-size: 14px;
    font-weight: 600;
    color: #1E2434;
}
.onboarding-progress-track {
    height: 8px;
    background-color: #F5F6F8;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}
.onboarding-progress-fill {
    background-color: #4CAF50;
    transition: width 0.3s ease-in-out;
    width: 60%;
    height: 100%;
}
.accordion.white_shadow_container {
    width: 100%;
    margin-right: 0;
}
.mockup-container {
    padding: 40px 20px !important;
    flex: 1;
    background: #F3EEE5 !important;
    position: relative !important;
}
.completed-task .mockup-container {
    background: #EBE3D6 !important;
}
.mockup-product-ui {
    padding: 0px;
    border-radius: 15px;
    background: #fff;
    max-width: 390px;
    margin: 0 auto;
    font-family: var(--mockup-body-font, 'Basis Grotesque', sans-serif);
    position: sticky;
    top: 40px;
}
.mockup-product-image {
    width: 100%;
    padding: 30px;
    aspect-ratio: 1.6/1;
    background: #FCF9F4;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.mockup-product-image span {
    color: #D6C7B0;
    font-size: 18px;
    font-family: 'Basis Grotesque Medium', sans-serif;
}
.mockup-product-info-container {
    padding: 20px 30px;
}
.mockup-product-info {
    text-align: center;
}
.mockup-product-range {
    font-size: 12px;
    color: #A6A6A6;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.mockup-product-title {
    font-size: 20px;
    font-family: var(--mockup-heading-font, 'Basis Grotesque Medium', sans-serif);
    font-weight: 700;
    color: var(--mockup-heading-font-color, #1E2434);
    margin-bottom: 6px;
}
.mockup-product-desc {
    font-size: 16px;
    color: var(--mockup-body-font-color, #6B7280);
    margin-bottom: 18px;
}
.mockup-qty-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    margin-top: 25px;
}
.mockup-qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    font-weight: bold;
    margin: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.mockup-qty-btn.minus {
    background: #F3EEE5;
    color: #D6C7B0;
    margin-left: 0;
}
.mockup-qty-btn.plus {
    background: var(--mockup-primary-color, #FF7E55);
    color: var(--mockup-button-font-color, #FFFFFF);
    margin-right: 0;
}
.mockup-qty-value {
    font-size: 20px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}
.mockup-product-types {
    margin-bottom: 24px;
}
.mockup-product-types-label {
    font-size: 15px;
    font-weight: 600;
    color: #1E2434;
    margin-bottom: 10px;
}
.mockup-product-type-option {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    background: #fff;
    cursor: pointer;
    margin-bottom: 10px;
    transition: border 0.2s, background 0.2s;
}
.mockup-product-type-option.selected {
    border: 2px solid var(--mockup-primary-color, #FF7E55);
    background: #FFF7F2;
}
.mockup-product-type-option input[type="radio"] {
    accent-color: var(--mockup-primary-color, #FF7E55);
    margin-right: 10px;
}
.mockup-product-type-name {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
}
.mockup-product-type-price {
    font-size: 16px;
    font-weight: 600;
}
.mockup-add-to-order-btn-container {
    border-top: 1px solid #E5E7EB;
    padding: 30px;
}
.mockup-add-to-order-btn {
    width: 100%;
    padding: 16px 0;
    border-radius: 32px;
    font-family: var(--mockup-heading-font, 'Basis Grotesque Medium', sans-serif);
    background: var(--mockup-primary-color, #FF7E55);
    color: var(--mockup-button-font-color, #FFFFFF);
    font-size: 16px;
    font-weight: 700;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.mockup-add-to-order-btn span {
    font-size: 18px;
    font-weight: 600;
}


.pos-icon-container {
    width: 80px;
    flex-shrink: 0;
}
.pos-icon {
    width: 65px;
    height: 65px;
    border-radius: 6px;
    object-fit: contain;
}
.location-icon-container {
    width: 40px;
    height: 40px;
    background: #F3EEE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 20px;
}
.order-type-icon-container {
    width: 30px;
    height: 30px;
    background: #FCF9F4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F3EEE5;
    margin-right: 10px;
}
.white_shadow_container.not_configured {
    border: 1px solid #F3EEE5;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.25);
}
.white_shadow_container.configuring {
    border: 1px dashed #D6C7B0;
    background: rgba(255, 255, 255, 0.8);
}
.configuring .location-icon-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px dashed #D6C7B0;
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.location-icon-container i {
    font-size: 20px;
    color: #D6C7B0;
}

.white_shadow_container.condensed .pos-icon-container {
    width: 55px;
}
.white_shadow_container.condensed .pos-icon {
    width: 40px;
    height: 40px;
}

.white_shadow_container.condensed .location-icon-container .pos-icon-container {
    width: 20px;
    position: absolute;
    top: -8px;
    right: -8px;
}
.white_shadow_container.condensed .location-icon-container .pos-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
}
.btn-group.slider-btn-group.btn-group-secondary {
    background: #fff;
}
.btn-group-secondary .btn.active {
    background-color: #F3EEE5 !important;
    color: #1E2434 !important;
}
/* .tab-pane .toggle-container {
    margin-bottom: 0px;
} */
.white_shadow_container_header .toggle span {
    margin-bottom: 0px;
}

/* Operating Hours Styles */
.operating-hours-day-container {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
}
.operating-hours-day-container h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1E2434;
    margin: 0;
}
.time-blocks-container {
    margin-top: 10px;
}        
.time-block-row {
    background: #FCF9F4;
    border-radius: 6px;
    transition: all 0.2s ease;
    padding: 10px;
}
.onboarding-header {
    padding: 20px;
    border-bottom: 1px solid #F3EEE5;
}
.onboarding-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.onboarding-tabs {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.onboarding-tabs .onboarding-tab-item {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: 'Basis Grotesque Regular', sans-serif;
    color: rgba(30, 36, 52, 0.75);
    cursor: pointer;
}
.onboarding-tabs .onboarding-tab-item.active {
    color: #1E2434;
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 600;
}
.onboarding-tab-item-icon {
    background: rgba(213, 207, 199, 0.5);
    border: 1px solid rgba(213, 207, 199, 0.5);
    color: rgba(30, 36, 52, 0.3);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 12px;
}
.onboarding-tabs .onboarding-tab-item.active .onboarding-tab-item-icon {
    background: rgba(213, 207, 199, 0.8);
    border: 1px solid rgba(213, 207, 199, 0.75);
    color: rgba(30, 36, 52, 0.75);
}
.onboarding-tabs .onboarding-tab-item.completed .onboarding-tab-item-icon {
    background: #FFCE6E;
    border: 1px solid #FFCE6E;
    color: #1E2434;
}
.plan-card {    
    border: 1px solid #F3EEE5;
    border-radius: 20px;
    padding: 20px;
    background: #fff;
}
.plan-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1E2434;
}

.video-player {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-top: 30px;
}
.video-player:focus {
    outline: none;
}

.video-player::-webkit-media-controls {
    display: flex !important;
}

.video-player::-webkit-media-controls-panel {
    display: flex !important;
}

.video-player::-webkit-media-controls-play-button {
    display: flex !important;
}

/* Theme Editor */
/* Chat container full height */
.chat-container {
    background: #fff;
    margin-top: 30px;
}
.chat-container.h-100 {
    height: calc(100vh - 200px); /* Adjust this value based on your header height */
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.chat-container.h-100 .chat-messages {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.chat-container.h-100 .chat-input {
    flex-shrink: 0;
}

/* Popover styles */
.popover-container {
    position: absolute;
    bottom: 50px;
    left: 0px;
    z-index: 1000;
    margin-top: 5px;
}

.popover-content {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
    overflow: hidden;
    padding: 10px !important;
}

.popover-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}
.popover-body .btn {
    text-align: left;
    justify-content: flex-start;
}

/* Input group styles */
.bite_branded .input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    width: 100%;
}
.bite_branded .input-group-addon,
.bite_branded .input-group-btn,
.bite_branded .input-group .form-control {
    display: table-cell;
}
.bite_branded .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}
.bite_branded .input-group-addon,
.bite_branded .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}
.bite_branded .input-group-addon {
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'Basis Grotesque', sans-serif;
    color: #1E2434;
    text-align: center;
    background-color: #F3EEE5;
    border: 1px solid rgba(30, 36, 52, 0.1);
    height: 45px;
}
.bite_branded .input-group .form-control:first-child,
.bite_branded .input-group-addon:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.bite_branded .input-group-addon:first-child {
    border-right: 0;
}
.bite_branded .input-group .form-control:last-child,
.bite_branded .input-group-addon:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.bite_branded .input-group-addon:last-child {
    border-left: 0;
}
.bite_branded .input-group .form-control:not(:first-child):not(:last-child),
.bite_branded .input-group-addon:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.bite_branded .input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

.bite_branded .input-group-btn > .btn {
    position: relative;
}

.bite_branded .input-group-btn > .btn + .btn {
    margin-left: -1px;
}

.bite_branded .input-group-btn > .btn:hover,
.bite_branded .input-group-btn > .btn:focus,
.bite_branded .input-group-btn > .btn:active {
    z-index: 2;
}

.bite_branded .input-group-btn:first-child > .btn,
.bite_branded .input-group-btn:first-child > .btn-group {
    margin-right: -1px;
}

.bite_branded .input-group-btn:last-child > .btn,
.bite_branded .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px;
}

/* Chat message enhancements */
.message.working {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.message.error {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
}

.message-actions {
    margin-top: 8px;
    text-align: right;
}

.message-actions .btn {
    padding: 2px 6px;
    font-size: 12px;
}

/* Chat header with actions */
.chat-header {
    display: flex;
    padding: 0px 15px;
}

.chat-actions {
    display: flex;
    gap: 8px;
}

.chat-actions .btn {
    padding: 4px 8px;
    font-size: 12px;
}

/* Shimmer effect for processing text */
.shimmer {
    background: linear-gradient(90deg, #1E2434 25%, rgba(30,36,52,0.5) 50%, #1E2434 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Cooking indicator styles */
.cooking-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cooking-indicator .dots {
    display: flex;
    gap: 4px;
}

.cooking-indicator .dot {
    animation: cookingDots 1.4s infinite;
    opacity: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #1E2434;
}

.cooking-indicator .dot:nth-child(1) {
    animation-delay: 0s;
}

.cooking-indicator .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.cooking-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes cookingDots {
    0%, 20% {
        opacity: 0.2;
    }
    40% {
        opacity: 1;
    }
    60%, 100% {
        opacity: 0.2;
    }
}

.full-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.bite-loader {
    width: 70px;
    height: 70px;
    animation: spin 4s linear infinite, pulse 2s ease-in-out infinite;
    border-radius: 8px;
    background: linear-gradient(45deg, #000000, rgba(0,0,0,0.5));
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); */
}

/* Hide elements with x-cloak until Alpine is ready */
[x-cloak] { display: none !important; }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
#pos-search {
    background: #FCF9F4;
    border-color: #D4CFC8;
    transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
    color: #1E2434;
}
#pos-search:focus {
    background:#fff;
    border-color: #FF7E55;
}

.drop-zone:not(.chat-input) {
    position: relative;
    /* cursor: pointer; */
    transition: all 0.3s ease;
    border: 1px dashed rgba(30, 36, 52, 0.2);
}
.drag-over:not(.chat-input), .chat-input.drag-over .chat-input-container {
    border-color: #FF7E55;
}
.chat-input.drag-over .chat-input-container {
    border: 1px dashed #FF7E55;
}

/* File preview styles */
.chat-input-files {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(30, 36, 52, 0.1);
    max-height: 200px;
    overflow-y: auto;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px;
    background: transparent;
    padding: 20px;
}

.file-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.file-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    background: #f8f9fa;
}

/* Image preview styles */
.file-preview-image {
    position: relative;
    width: 80px;
    height: 80px;
    background: #fff;
}

.file-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px 7px 0 0;
}

.file-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5px;
}

.file-preview-image:hover .file-overlay {
    opacity: 1;
}

/* Generic file preview styles */
.file-preview-generic {
    display: flex;
    align-items: center;
    padding: 10px;
    min-width: 200px;
    max-width: 300px;
    position: relative;
}

.file-icon {
    font-size: 24px;
    color: #6c757d;
    margin-right: 10px;
    min-width: 30px;
    text-align: center;
}

.file-icon .fa-file-pdf {
    color: #dc3545;
}

.file-icon .fa-font {
    color: #6f42c1;
}

.file-icon .fa-image {
    color: #28a745;
}

.file-details {
    flex: 1;
    min-width: 0;
}

.file-details .file-name {
    font-weight: 500;
    color: #212529;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.file-details .file-size {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 2px;
}

.file-details .file-type {
    font-size: 11px;
    color: #adb5bd;
}

/* Remove button styles */
.file-remove-btn {
    background: #FFF;
    border: 1px solid rgba(30, 36, 52, 0.1);
    color: #1E2434;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.file-remove-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.file-preview-generic .file-remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
}

/* Message attachments styles */
.message-attachments {
    margin-top: 10px;
}

.attachments-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.attachments-header i {
    margin-right: 5px;
}

.attachments-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.attachment-item {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #F3EEE5;
}

/* Image attachment styles */
.attachment-image {
    position: relative;
    max-width: 100px;
}

.attachment-image img {
    width: 100%;
    height: auto;
    display: block;
}

.attachment-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 8px;
    font-size: 11px;
    line-height: 1.2;
}

.attachment-info .attachment-name {
    display: block;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.attachment-info .attachment-size {
    display: block;
    opacity: 0.8;
    font-size: 10px;
}

/* File attachment styles */
.attachment-file {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    position: relative;
}

.attachment-icon {
    font-size: 20px;
    color: #6c757d;
    margin-right: 10px;
    min-width: 25px;
    text-align: center;
}

.attachment-icon .fa-file-pdf {
    color: #dc3545;
}

.attachment-icon .fa-font {
    color: #6f42c1;
}

.attachment-icon .fa-image {
    color: #28a745;
}

.attachment-details {
    flex: 1;
    min-width: 0;
}

.attachment-details .attachment-name {
    font-weight: 500;
    color: #212529;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    font-size: 13px;
}

.attachment-details .attachment-size {
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 2px;
}

.attachment-details .attachment-type {
    font-size: 10px;
    color: #adb5bd;
}

.attachment-download {
    color: #6c757d;
    text-decoration: none;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.attachment-download:hover {
    color: #495057;
    background: #e9ecef;
}

/* User message attachments */
.message.user {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

/* Backup Management Styles */
#backup_modal .table td {
    vertical-align: middle;
}

#backup_modal .badge {
    font-size: 0.8em;
}

#backup_modal .text-center.p-20 {
    padding: 40px 20px;
}

#backup_modal .fa-archive {
    color: #ccc;
    margin-bottom: 15px;
}

#backup_modal .btn-sm {
    padding: 5px 12px;
    font-size: 12px;
}

#backup_modal .table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

#backup_modal .modal-dialog {
    max-width: 800px;
}

/* Backup button styling */
.btn .fa-clock-rotate-left {
    margin-right: 8px;
}

/* File types preview in backup list */
.file-types-preview {
    margin-top: 2px;
}

.file-types-preview small {
    display: inline-block;
    margin-right: 5px;
    font-size: 0.7em;
    color: #666;
}

.file-types-preview small:before {
    content: '.';
}

/* Backup container styling */
.backup-container {
    padding: 15px;
    border: 1px solid #F3EEE5;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background-color 0.2s ease;
}

.backup-container:hover {
    background: #FCF9F4;
}

.backup-container .badge {
    font-size: 0.75em;
}

.backup-container .badge.ml-2 {
    margin-left: 8px !important;
}

.backup-container strong {
    text-transform: capitalize;
}
/* Copy Feedback */
.copy-feedback {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #28a745;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-feedback.show {
    opacity: 1;
}

.bite-element-highlight {
    outline: 3px solid #007bff !important;
    outline-offset: 2px !important;
    background-color: rgba(0, 123, 255, 0.1) !important;
    transition: all 0.2s ease-in-out !important;
    position: relative !important;
    z-index: 9999 !important;
}

.bite-element-highlight::before {
    content: 'Selected Element' !important;
    position: absolute !important;
    top: -30px !important;
    left: 0 !important;
    background: #F7744A !important;
    color: white !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: bold !important;
    white-space: nowrap !important;
    z-index: 10000 !important;
}

.selected-element-indicator {
    background: linear-gradient(135deg, #F7744A, #FF7E55);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.3s ease-out;
}

.selected-element-indicator i {
    font-size: 16px;
}

.selected-element-indicator strong {
    color: #fff;
    font-weight: 600;
}

.selected-element-indicator .btn-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    margin-left: auto;
    transition: background-color 0.2s ease;
}

.selected-element-indicator .btn-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.logo-section {
    display: flex;
    flex-direction: row;
}
.logo-section img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-right: 6px;
}
.logo-section-text {
    display: flex;
    font-size: 14px;
    margin-left: 6px;
    padding: 6px 12px;
    align-items: center;
    align-content: center;
}
.pricing-content .price s {
    color: rgba(30, 36, 52, 0.5);
}

.pricing-selection {
    margin-top: 30px;
}

.pricing-option {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-option:hover {
    border-color: #FF7E55;
    box-shadow: 0 4px 12px rgba(255, 126, 85, 0.15);
    transform: translateY(-2px);
}

.pricing-option:active {
    transform: translateY(0);
}

.pricing-option-featured {
    border-color: #FF7E55;
}

.pricing-option.selected {
    border-color: #FF7E55;
    background: rgba(255, 126, 85, 0.05);
    box-shadow: 0 6px 20px rgba(255, 126, 85, 0.25);
}

.pricing-header {
    background: #FF7E55;
    padding: 8px 16px;
    text-align: center;
}

.deal-badge {
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-content {
    padding: 20px;
}

.bite_branded .radio {
    margin-bottom: 15px;
}

.bite_branded .radio label {
    display: flex;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #1E2434;
}

.product-name {
    flex: 1;
}

.bite_branded .price {
    font-size: 18px;
    font-weight: 700;
    color: #1E2434;
}

.pricing-option-weekly .price {
    color: #666;
}

.selected-price {
    font-size: 18px;
    font-weight: 700;
    color: #666;
}

.inclusions {
    margin: 20px 0 0 0;
    padding: 20px 0 10px 0;
    border-top: 1px dotted #ccc;
}

.inclusion-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #1E2434;
}

.inclusion-item:last-child {
    margin-bottom: 0;
}

.inclusion-item i {
    margin-right: 10px;
    font-size: 16px;
    color: #FF7E55;
}

.payment-option {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

.payment-option strong {
    color: #FF7E55;
}

/* Custom radio button styling */
.radio input[type="radio"] {
    display: none;
}

.radio input[type=radio]:checked + label:before {
    border-width: 6px;
}

.radio label:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 50%;
    margin-right: 15px;
    background: white;
    transition: none;
}

.radio input[type="radio"]:checked + label:before {
    border-color: #FF7E55;
    background: #1E2434;
    box-shadow: inset 0 0 0 4px #1E2434;
}

.radio input[type="radio"]:checked + label {
    color: #1E2434;
}

/* Enhanced card selection styling */
.pricing-option.selected .radio label:before {
    border-color: #FF7E55;
    background: #FF7E55;
    box-shadow: inset 0 0 0 4px white;
}

.pricing-option.selected .radio label {
    color: #1E2434;
}
.bite_branded p.offer-font {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: #1E1E1E;
}
.trial-expiry-text {
    font-size: 16px;
    background: #1E2434;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}
.small-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Onboarding */
.bite_branded .color-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 8px;
}
.bite_branded .color-group label {
    font-weight: 400;
    margin-bottom: 0px;
}
.bite_branded .color {
    padding: 8px;
    height: 36px;
    max-width: 100px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-right: 12px;
    background: transparent;
}
.onboarding_container {
    display: flex;
    flex-direction: row;
    height: 100%;
}
.onboarding_content_container {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
    overflow-y: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.onboarding_content_container::-webkit-scrollbar {
    display: none;
}
.onboarding_visual_container {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}
.onboarding_container.branding .onboarding_visual_container {
    flex: 3;
}
.onboarding_mobile_action_bar {
    display: none;
}
.logo_and_progress_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
}
.logo_and_progress_left_container {
    display: flex;
    flex-direction: row;
    align-items: left;
    margin-right: 20px;
}
.logo_and_progress_left_container_back_button {
    border-right: 1px solid rgba(30, 36, 52, 0.1);
    padding-right: 5px;
    margin-right: 20px;
}
.logo_and_progress_right_container {
    display: flex;
    flex-direction: column;
    width: 100px;
}
.logo_and_progress_right_container .progress {
    width: 100%;
    max-width: 100px;
    margin-bottom: 0px;
}
.onboarding_action_bar {
    display: flex;
    margin-top: 40px;
}
.progress {
    border-radius: 2px;
}
.onboarding_visual_container>.visual-container {
    background: #FFCE6E;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.onboarding_visual_container>.visual-container img {
    max-width: 350px;
    max-height: 304px;
}
.onboarding_visual_container>.visual-container img.welcome-vid {
    max-width: 480px;
    max-height: 320px;
}
.content_container img.welcome-vid {
    display: none;
    max-width: 100%;
    width: auto;
    max-height: 320px;
    margin: 0 auto;
}
.content_container {
    width: 100%;
    max-width: 420px;
    margin: 56px auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.content_container.sm {
    margin: 40px auto;
}
.content_container h1 {
    font-size: 48px;
    line-height: 56px;
    font-weight: 500;
    font-family: 'Value Serif Medium', serif;
    margin-bottom: 40px;
}
.content_container p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #1E2434;
}
.onboarding_content_container .form-group label {
    font-weight: 500;
}
.step_container {
    margin-top: 20px;
}
.step_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.step_item_number {
    background: #FF7E55;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    min-width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 500;
}
.step_item_content {
    margin-left: 12px;
    flex: 1;
}
.step_item_content p {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 20px;
}
.bite_branded .btn-black {
    background: #1E2434;
    color: #fff ;
    border-radius: 10px;
    padding: 10px 40px;
    font-weight: 500;
}
.bite_branded .btn-black.btn-narrow {
    padding: 10px 16px;
}
.bite_branded .btn.no_hover:hover {
    background: transparent;
}
.bite_branded .publish-button {
    padding: 7px 16px;
}
.btn-black:hover {
    background-color: #1B2132;
}
.bite_branded .btn-link {
    color: rgba(30, 36, 52, 0.5);
    font-weight: 400;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.bite_branded .btn-link.btn-link-dark {
    color: rgba(30, 36, 52, 1);
    text-decoration: underline;
    font-weight: 400;
}
.bite_branded p a, .bite_branded span a {
    font-family: 'Basis Grotesque', sans-serif;
    color: rgba(30, 36, 52, 1);
    text-decoration: underline;
    font-weight: 400;
}
.bite_branded .btn-link i {
    color: rgba(30, 36, 52, 1);
}
.onboarding_mobile_action_bar .btn-link {
    color: rgba(30, 36, 52, 1);
}
.bite_branded .btn-outline {
    color: rgba(30, 36, 52, 1);
    border: 1px solid rgba(30, 36, 52, 0.2);
    background: transparent;
    font-weight: 400;
}
.bite_branded .btn-outline.btn-narrow {
    padding-left: 16px;
    padding-right: 16px;
}
.bite_branded .btn-outline.drag-over {
    border: 1px dashed #FF7E55;
}
.bite_branded .btn-link.no-padding {
    padding: 0px !important;
}
.logo_and_progress_left_container_back_button .btn-link.no-padding {
    padding: 0px 15px 0px 10px !important;
}
.logo_and_progress_container .btn-link.no-padding {
    padding: 0px 15px 0px 10px !important;
}
.bite_branded .btn-black.btn-sm, .bite_branded .btn-outline.btn-sm {
    border-radius: 4px;
    padding: 6px 8px;
    border-radius: 4px;
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
}
.bite_branded .btn-ai {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    border-radius: 4px;
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #1E2434;
    background: linear-gradient(104.34deg, #FF7E55 -33.94%, #FFCE6E 115.7%);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.m-l-16 {
    margin-left: 16px;
}
.bite_branded .btn-ai img {
    width: 10px;
    height: 10px;
    margin-right: 4px;
}
.bite_branded .btn-ai:hover {
    background: linear-gradient(104.34deg, #FF7E55 0%, #FFCE6E 100%);
}
.logo_container {
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    align-items: center;
    cursor: pointer;
}
.logo_container_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.logo_container.no-logo:not(.drag-over) {
    border: 1px dashed rgba(30, 36, 52, 0.2);
}
.logo_container i {
    margin-right: 8px;
}
.logo_container img {
    border-radius: 8px;
    width: auto;
    height: 72px;
    object-fit: contain;
}
.logo_image_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.logo_container {
    display: flex;
    flex-direction: row;
}
.logo_container .logo_details {
    margin-left: 12px;
    align-items: center;
}
.logo_container .logo_details p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #1E2434;
    margin-bottom: 0px;
}
.logo_container .logo_details .btn-link {
    font-size: 12px;
    line-height: 14px;
    color: rgba(30, 36, 52, 0.5);
    text-decoration: underline;
    font-weight: 400;
    margin-bottom: 0px;
}
.onboarding_preview_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100dvh;
    background-color: #FFF;
    border-radius: 16px;
    padding: 4px;
    background: rgba(235, 228, 216, 1);
}
.branding_column_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.branding_column_header_buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.branding_column_header_buttons .btn {
    margin-right: 6px;
}
.branding_column_header_buttons .btn:last-child {
    margin-right: 0px;
}
.website-preview-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    border-radius: 12px;
    overflow: hidden;
}
.chat-container-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
}
.radio.radio-complete input[type=radio]:checked + label:before {
    border-color: #FFCE6E;
}
/* Responsive adjustments */
@media (max-width: 991px) {
    .logo_and_progress_left_container_back_button .btn-link.no-padding {
        padding: 0px 15px 0px 10px !important;
    }
    .logo_and_progress_container .btn-link.no-padding {
        padding: 0px 10px 0px 10px !important;
    }
    .logo_and_progress_left_container_back_button {
        padding-right: 10px;
    }
    .page-container .page-content-wrapper .content {
        padding-top: 0px !important;
        margin-top: 60px !important;
        border-top-left-radius: 20px !important;
        border-top-right-radius: 20px !important;
        box-shadow: 0px 0px 12px 0px #0000000D;
    }
    .page-container .bite_branded {
        z-index: 999;
    }
    .setup-container {
        padding: 20px !important;
    }
    .header {
        border-bottom: none !important;
    }
    .content_container img.welcome-vid {
        display: block;
    }
    .chat-container {
        margin-top: 24px;
    }
    /* .ai-editing {
        height: calc(100vh - 168px);
    } */
    .content_container h1 {
        font-size: 40px;
        line-height: 48px;
        font-weight: 500;
        font-family: 'Value Serif Medium', serif;
        margin-bottom: 24px;
    }
    .content_container h2 {
        font-size: 24px;
        line-height: 24px;
        font-weight: 400;
    }
    .onboarding_container.branding.preview-mode .content_container {
        display: none;
    }
    .onboarding_container.branding.preview-mode .content_container.visible {
        display: block;
    }
    .onboarding_visual_container {
        display: none;
        padding: 0px;
    }
    .onboarding_visual_container.visible {
        display: flex;
    }
    .onboarding_container {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .onboarding_content_container {
        padding-bottom: 84px;
    }
    .chat-container.fill-space {
        height: auto;
        min-height: auto;
        max-height: unset;
        border-radius: 0px;
        margin-left: -20px;
        margin-right: -20px;
        flex: 1;
    }
    .onboarding_container.branding .onboarding_content_container {
        overflow: unset;
        flex: 0;
    }
    .onboarding_container.branding.ai-editing:not(.preview-mode) .onboarding_content_container {
        overflow: hidden;
        flex: 1;
        padding-bottom: 84px;
    }
    .onboarding_container.branding.preview-mode .onboarding_content_container {
        padding-bottom: 20px;
    }
    .onboarding_action_bar {
        display: none;
    }
    .logo_and_progress_container {
        justify-content: space-between;
    }
    .logo_and_progress_left_container_back_button, .content_container .back_button {
        /* display: none; */
    }
    .content_container .start_back_button {
        display: none;
    }
    .onboarding_mobile_action_bar {
        display: flex;
        position: fixed;
        justify-content: space-between;
        align-items: center;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: #FAF4EA;
        border-top: 1px solid rgba(30, 36, 52, 0.1);
        box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 1200;
    }
    .onboarding_preview_container {
        height: calc(100dvh - 148px);
        border-radius: 0px;
        padding: 0px;
        padding-top: 4px;
    }
    .branding_column_header {
        flex-direction: column;
        justify-content: flex-start;
        align-items: self-start;
    }
    .branding_column_header_buttons {
        margin-top: 20px;
    }
    .content_container h1 {
        margin-top: 20px;
    }
    .content_container {
        margin-top: 28px;
        max-width: 100%;
    }
    .bite_branded .form-control {
        padding: 10px 15px;
        min-height: 43px;
        height: 43px;
    }
    .onboarding_container.branding.ai-editing .content_container.sm {
        margin: 40px auto 0px auto;
        flex: 1;
    }
    .website-preview-container {
        border-radius: 0px;
    }
    .onboarding_container.branding.ai-editing .chat-container-wrapper {
        max-height: calc(100dvh - 242px);
    }
    #app-preview-container {
        padding-top: 0px;
    }
    #app-preview {
        max-height: 438px;
        min-width: 218px;
        width: 218px;
    }
}

/* Chat */

/* Markdown content styles */
.markdown-content {
    line-height: 1.6;
    color: #333;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
    margin-top: 0px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1E2434;
    line-height: 22px;
    font-family: 'Basis Grotesque Medium', sans-serif;
}

.markdown-content h1 { font-size: 14px; }
.markdown-content h2 { font-size: 14px; }
.markdown-content h3 { font-size: 14px; }
.markdown-content h4 { font-size: 14px; }

.markdown-content p {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 20px;
}
.message .markdown-content p:last-child {
    margin-bottom: 0;
}

.markdown-content ul,
.markdown-content ol {
    margin-bottom: 1px;
    padding-left: 2em;
}

.markdown-content li {
    margin-bottom: 0.3em;
}

.markdown-content blockquote {
    border-left: 4px solid #ddd;
    margin: 1em 0;
    padding-left: 1em;
    color: #666;
    font-style: italic;
}

.markdown-content code {
    background-color: #f5f5f5;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
    color: #e74c3c;
}

.markdown-content pre {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 1em;
    margin: 1em 0;
    overflow-x: auto;
    display: none; /* Hide this for now */
}

.markdown-content pre code {
    background-color: transparent;
    padding: 0;
    color: inherit;
}

.markdown-content table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
}

.markdown-content th,
.markdown-content td {
    border: 1px solid #ddd;
    padding: 0.5em;
    text-align: left;
}

.markdown-content th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.markdown-content a {
    color: #007bff;
    text-decoration: none;
}

.markdown-content a:hover {
    text-decoration: underline;
}

.markdown-content strong {
    font-weight: 600;
}

.markdown-content em {
    font-style: italic;
}

.markdown-content hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 2em 0;
}

/* Code block styling */
.markdown-content .hljs {
    background: #f8f9fa;
    border-radius: 4px;
}

/* Inline code styling */
.markdown-content :not(pre) > code {
    background-color: #f1f3f4;
    color: #d73a49;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
}
.ai-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color:#FF9368;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .pricing-content {
        padding: 15px;
    }
    
    .radio label {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price {
        margin-top: 5px;
        align-self: flex-end;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dashboard styling */
.page-sidebar .sidebar-header {
    background: none;
    border-bottom: 1px solid #F3EEE5;
}
.sidebar-header .app_icon.sm {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    border: 2px solid rgba(30, 36, 52, 0.05);
}
.sidebar-header {
    margin: 1px;
    margin-bottom: 20px;
}
.sidebar-header .media-left {
    padding-right: 16px;
}
.sidebar-header {
    font-size: 15px;
    line-height: 20px;
    font-family: 'Basis Grotesque Medium', sans-serif;
    color: rgba(30, 36, 52, 0.1);
    font-weight: 400;
}
.sidebar-header strong {
    font-size: 15px;
    line-height: 20px;
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 700;
    color: #1E2434;
    margin-bottom: 3px;
    display: inline-block;
}
.setup-container {
    max-width: 720px;
    padding: 32px 20px;
    margin: 0 auto;
}
.welcome-banner {
    background: #FFCE6E;
    display: flex;
    flex-direction: row;
    padding: 12px;
    border-radius: 10px;
    align-items: center;
}
.welcome-banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1.8;
    padding-left: 28px;
    padding-right: 40px;
}
.welcome-banner-content h1 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: #1E2434;
    font-family: 'Value Serif Medium', sans-serif;
    margin-bottom: 10px;
}
.welcome-banner-content p {
    font-size: 14px;
    color: #1E2434;
}
.welcome-banner-video {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
}
.welcome-banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.setup-container h2 {
    font-size: 20px;
}
.setup_step_container {
    padding: 14px 16px;
    border: 1px solid rgba(30, 36, 52, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 8px;
    position: relative;
}
.setup_step_container button.btn-toggle, .location_container button.btn-toggle {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 20px;
    height: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: none;
    border: none;
    color: #1E2434;
    cursor: pointer;
    font-weight: 400;
    font-family: 'Basis Grotesque', sans-serif;
}

.setup_step_container button.btn-toggle, .location_container button.btn-close {
    position: absolute;
    top: 14px;
    right: 10px;
    width: 20px;
    height: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: none;
    border: none;
    color: #1E2434;
    cursor: pointer;
    font-weight: 400;
    font-family: 'Basis Grotesque', sans-serif;
}

.setup_step_container:first-child {
    margin-top: 24px;
}
.setup_step_wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
}
.setup_step_status_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 20px;
}
.setup_step_status_completed {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF9368;
    color: #fff;
    text-align: center;
    line-height: 20px;
    font-size: 10px;
}
.setup_step_status_pending {
    width: 20px;
    height: 20px;
}
.setup_step_status_pending img {
    width: 20px;
    height: 20px;
    margin-top: -3px;
}
.setup_step_content_container {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    flex: 1;
}
.setup_step_content_header {
    cursor: pointer;
    width: 100%;
}
.setup_step_content_container .btn-black, .setup_step_content_container .btn-default {
    margin-top: 16px;
}
.setup_step_content_container h3 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #1E2434;
    margin-bottom: 0px;
    margin-top: 0px;
    font-family: 'Basis Grotesque Medium', sans-serif;
}
.setup_step_content_container h3 span {
    color: rgba(30, 36, 52, 0.5);
}
.setup_step_content_container p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #1E2434;
    font-family: 'Basis Grotesque', sans-serif;
    margin-top: 16px;
}
.step_preview_container {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.pos_logo_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: 6px;
}
.pos_logo_container div {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(30, 36, 52, 0.1);
    border-radius: 4px;
    padding: 10px 15px;
    margin-right: 6px;
    color: #1E2434;
    font-family: 'Basis Grotesque', sans-serif;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
}
.pos_logo_container img {
    height: 18px;
}
.space-between {
    justify-content: space-between;
}
.pos_content_container {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 40px auto;
}
.pos_content_container.lg {
    max-width: 880px;
}
.pos_content_header h2 {
    font-size: 24px;
    line-height: 32px;
}
.pos_content_header p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}
.form-group {
    position: relative;
}
.form-group .input-group-text {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    background: transparent;
    color: rgba(30, 36, 52, 0.3) !important;
    margin-bottom: 0px !important;
    padding: 0px 12px;
}
.form-group .input-group-text + .form-control {
    padding-left: 32px;
}
.pos_list_item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    cursor: pointer;
}
.pos_list_item_details_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.pos_logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(30, 36, 52, 0.1);
}
.pos_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pos_list_item_name {
    margin-left: 16px;
}
.pos_list_item_name h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #1E2434;
}
.pos_list_item_name h4 i {
    display: inline-block;
}
.pos_list_item_button_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.btn-outline.btn-xs {
    padding: 5px 8px;
    border: 1px solid rgba(30, 36, 52, 0.2);
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0px;
}

/* Custom Tooltip Styles */
.tooltip-container {
    position: relative;
    display: inline-block;
    margin-left: 16px;
    position: relative;
}
.tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1E2434;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-family: 'Basis Grotesque', sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    pointer-events: none;
}
.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
}
.no_pos_cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
}
.no_pos_icon {
    color: #FF7E55;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
}
.no_pos_content {
    margin-left: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.no_pos_content p {
    font-family: 'Basis Grotesque', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0px;
}
.no_pos_content p a {
    color: #1E2434;
    text-decoration: underline;
    font-weight: 400;
}
.no_pos_content p > strong {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
}
.pos_content_type_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.pos_content_type_logo {
    width: 40px;
    height: 40px;
}
.pos_content_type_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pos_content_type_name {
    margin-left: 16px;
}
.pos_content_type_name h4 {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #1E2434;
    margin-top: 0px;
    margin-bottom: 0px;
}
.pos_content_type_name p {
    font-family: 'Basis Grotesque', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1E2434;
    margin-bottom: 0px;
}
.bite_pos_information_container {
    margin-top: 24px;
    background: #EDE8DE;
    padding: 20px;
    border-radius: 10px;
    padding: 13px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
}
.bite_pos_information_image {
    width: 100%;
    max-width: 107px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.bite_pos_information_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bite_pos_information_content {
    margin-left: 16px;
    margin-right: 7px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    align-content: center;
}
.bite_pos_information_content a {
    display: inline-block;
    margin-right: 12px;
}
.location_container {
    background: #fff;
    padding: 25px 28px;
    border-radius: 8px;
    margin-top: 10px;
    position: relative;
}
.location_header {
    cursor: pointer;
}
.location_container button.btn-toggle {
    position: absolute;
    top: 38px;
    right: 20px;
}
.location_details_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.location_name {
    margin-left: 16px;
}
.location_name h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #1E2434;
}
.location_name p {
    font-family: 'Basis Grotesque', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1E2434;
    margin-bottom: 0px;
}
.location_content {
    padding-left: 40px;
}
.location_content .toggle-container, .pos_content_container .toggle-container {
    align-items: center;
}
.location_content.no-padding {
    padding-left: 0px;
}
.site_toggle_container {
    margin-bottom: 15px;
}
.site_toggle_container:last-child {
    margin-bottom: 0px;
}
.location_container h4 {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1E2434;
    margin-bottom: 4px;
    margin-top: 0px;
}
.location_content_inner_container p {
    font-size: 12px;
    line-height: 16px;
    color: rgba(30, 36, 52, 0.5);
    font-family: 'Basis Grotesque', sans-serif;
    font-weight: 400;
}
.location_content_inner_container {
    padding-top: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(30, 36, 52, 0.1);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.location_content_inner_container.no-padding {
    padding: 0px;
}
.location_container .location_content:last-child .location_content_inner_container {
    border-bottom: none;
    padding-bottom: 10px;
}
.location_content_inner_container .location_content_inner_title {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.location_content_inner_container .button_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 5px;
    padding-left: 40px;
}
.location_content_inner_container .location_content_inner_details {
    display: flex;
    flex-direction: column;
    flex: 2;
    padding-left: 29px;
}
.cream_container {
    padding: 20px;
    background: #FCF9F4;
    border-radius: 8px;
}
.border-divider {
    border-bottom: 1px solid rgba(30, 36, 52, 0.1);
    margin-top: 15px;
    margin-bottom: 15px;
}
.border-divider.lg {
    margin-top: 24px;
    margin-bottom: 24px;
}
.p-l-40 {
    padding-left: 40px;
}
.m-t-24 {
    margin-top: 24px;
}
.m-b-24 {
    margin-bottom: 24px;
}
.hours_display_container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    font-family: 'Basis Grotesque', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: rgba(30, 36, 52, 0.5);
    margin-bottom: 8px;
}
.hours_display_container.editing {
    color: #1E2434;
}
.hours_day_container {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.hours_day_container.m-t-8 {
    margin-top: 8px;
}
.hours_day_container .checkbox_container {
    margin-right: 8px;
}
.hours_time_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 2;
}
.hours_time_container_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.hours_time_container_item p {
    margin-bottom: 0px;
    margin-left: 8px;
    margin-right: 8px;
}
.pos_connection_item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}
.pos_connection_item_details_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(30, 36, 52, 0.1);
    padding-bottom: 20px;
}
.pos_connection_item_logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(30, 36, 52, 0.1);
}
.pos_connection_item_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pos_connection_item_name {
    margin-left: 16px;
}
.pos_connection_item_name h4 {
    font-family: 'Basis Grotesque', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    margin: 0px;
}
.pos_connection_item_name p.domain_name_label {
    font-family: 'Basis Grotesque', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: rgba(30, 36, 52, 0.5);
    margin: 0px;
    margin-bottom: 4px;
}
.pos_connection_item_name h4.domain_name {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    margin: 0px;
    margin-bottom: 10px;
}
.pos_connection_item_name p {
    font-family: 'Basis Grotesque', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1E2434;
    margin: 0px;
}
.pos_connection_locations_container {
    position: relative;
    padding-top: 20px;
}

.pos_connection_locations_container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 32px;
    width: 1px;
    background-color: rgba(30, 36, 52, 0.1);
}

.pos_connection_location_item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 0;
    margin-left: 40px;
}

.pos_connection_location_item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background-color: rgba(30, 36, 52, 0.1);
}

.pos_connection_location_icon {
    width: 40px;
    height: 40px;
    background-color: #FAF4EA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.pos_connection_location_icon i {
    color: #1E2434;
    font-size: 14px;
}

.pos_connection_location_details {
    flex: 1;
}

.pos_connection_location_details h4 {
    font-family: 'Basis Grotesque', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #1E2434;
    margin: 0;
    font-weight: 500;
}

.pos_connection_location_details p {
    font-family: 'Basis Grotesque', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(30, 36, 52, 0.5);
    margin: 0;
    line-height: 20px;
}
.pos_connection_item_button_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.connected_label {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: rgba(107, 209, 105, 1);
    margin: 0;
    padding: 4px 8px;
    background-color: rgba(234, 250, 235, 1);
    border: 1px solid rgba(30, 36, 52, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-radius: 4px;
}
.connected_label div {
    width: 8px;
    height: 8px;
    background-color: rgba(107, 209, 105, 1);
    border-radius: 50%;
    margin-right: 6px;
}

.pending_label {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #EEAD2C;
    margin: 0;
    padding: 4px 8px;
    background-color: rgba(255, 206, 110, 0.2);
    border: 1px solid rgba(30, 36, 52, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-radius: 4px;
}
.pending_label div {
    width: 8px;
    height: 8px;
    background-color: #EEAD2C;
    border-radius: 50%;
    margin-right: 6px;
}

/* Lottie Animation Styles */
.lottie-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lottie-animation svg {
    max-width: 100%;
    max-height: 100%;
}

#menu-lottie-animation {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.plan_container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}
.plan_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
}
.plan_item_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    background: #FF7E55;
    color: #fff;
    flex: 1;
    width: 100%;
}
.plan_item_header.blue {
    background: #5599FF;
}
.plan_item_header p {
    color: #fff;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    font-family: 'Basis Grotesque Medium', sans-serif;
}
.plan_item_content {
    padding: 20px;
}
.plan_item_content_header {
    min-height: 224px;
    border-bottom: 1px solid rgba(30, 36, 52, 0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.plan_item_price {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.plan_item_price_value h3 {
    font-size: 42px;
    font-weight: 400;
    font-family: 'Basis Grotesque', sans-serif;
    color: #1E2434;
    margin: 0;
    line-height: 50px;
}
.plan_item_price_label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: 8px;
}
.plan_item_price_label p {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Basis Grotesque', sans-serif;
    color: #1E2434;
    margin: 0;
    line-height: 20px;
}
.plan_cta {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Basis Grotesque Medium', sans-serif;
    margin: 0;
    padding: 0;
}
.plan_cta button.btn-link {
    color: #FF7E55;
    font-weight: 500;
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    padding: 0;
}
.plan_item_price_label p:first-child {
    color: rgba(30, 36, 52, 0.5);
}
p.billing_label {
    color: rgba(30, 36, 52, 0.5);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Basis Grotesque', sans-serif;
    margin-top: 5px;
    line-height: 20px;
}
.plan_item_features {
    min-height: 150px;
}
.plan_item_features .plan_item_feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: 12px;
}
.plan_item_features .plan_item_feature i {
    color: rgba(30, 36, 52, 0.5);
}
.plan_item_features .plan_item_feature p {
    margin-bottom: 0px;
    margin-left: 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Basis Grotesque', sans-serif;
}
.checkout_container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.checkout_information {
    flex: 1;
}
.checkout_information h2 {
    font-size: 32px;
    font-weight: 500;
    font-family: 'Basis Grotesque Medium', sans-serif;
    color: #1E2434;
}
.checkout_form {
    flex: 1;
}
.channels_container {
    padding: 32px;
    background: #fff;
    border-radius: 8px;
}
.channels_container .border-divider {
    margin-top: 30px;
    margin-bottom: 30px;
}
.info_container {
    padding-left: 40px;
}
.info_container .cream_container, .info_container .no-background {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.info_container .cream_container .icon_container, .info_container .no-background .icon_container {
    width: 20px;
    height: 20px;
    background: #FAF4EA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info_container .cream_container .icon_container i, .info_container .no-background .icon_container i {
    color: #FF7E55;
    font-size: 14px;
}
.info_container .no-background .icon_container i {
    font-size: 20px;
}
.info_container .cream_container p, .info_container .no-background p {
    margin: 0px;
}
.published_channels_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.published_channel_item {   
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.published_channel_item:last-child {
    margin-bottom: 0px;
}
.published_channel_item_name {
    margin-left: 20px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    font-family: 'Basis Grotesque Medium', sans-serif;
    min-width: 120px;
}
.published_channel_item_details {
    margin-left: 20px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Basis Grotesque', sans-serif;
    color: rgba(30, 36, 52, 0.5);
}
.published_channel_item_details p {
    margin: 0;
    line-height: 20px;
}
.modal-underlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-underlay .content {
    max-width: 400px;
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    /* max-height: 500px; */
    text-align: center;
}
.modal-underlay .content h2 {
    font-family: 'Value Serif Medium', sans-serif;
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
    color: #1E2434;
    margin-bottom: 30px;
}
.modal-underlay .content p {
    font-family: 'Basis Grotesque', sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #1E2434;
    margin-bottom: 0px;
}
.modal-underlay .content .btn {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    font-family: 'Basis Grotesque Medium', sans-serif;
    margin-top: 40px;
    padding: 12px 16px;
}
#publish_modal, #view_modal {
    z-index: 1210;
}
.dns_records_container {
    border: 1px solid rgba(30, 36, 52, 0.1);
    border-radius: 8px;
}
.dns_records_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 15px;
    background: rgba(30, 36, 52, 0.1);
    border-radius: 8px 8px 0px 0px;
}
.dns_records_body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
}
.dns_records_header div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    font-family: 'Basis Grotesque Medium', sans-serif;
    color: #1E2434;
}
.dns_records_header div:last-child {
    margin-left: 27px;
}
.dns_records_body div:last-child {
    margin-left: 15px;
}
.dns_records_body div {
    flex: 1;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    font-family: 'Basis Grotesque Medium', sans-serif;
    color: #1E2434;
}
.dns_records_header div.dns_value, .dns_records_body div.dns_value {
    flex: 2;
    color: rgba(30, 36, 52, 0.5);
}
.dns_records_body .dns_value:last-child {
    color: #1E2434;
}
.dns_records_container i {
    color: rgba(30, 36, 52, 0.5);
}
@media (max-width: 991px) {
    .location_content_inner_container .location_content_inner_title {
        flex-direction: row;
        flex: 1;
    }
    .location_content_inner_container .button_container {
        margin-top: 0px;
        padding-left: 0px;
        align-items: flex-end;
        flex: 1;
    }
    .hours_display_container.editing {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .hours_display_container.editing .hours_time_container {
        margin-top: 20px;
    }
    .dns_records_header div:last-child, .dns_records_body div:last-child {
        margin-left: 0px;
    }
    .dns_records_container {
        display: flex;
        flex-direction: row;
    }
    .dns_records_header {
        flex-direction: column;
        border-radius: 8px 0px 0px 0px;
        align-items: flex-start;
        padding: 10px 15px;
    }
    .dns_records_header div {
        flex: 1;
        font-size: 14px;
        line-height: 22px;
        font-weight: 500;
        font-family: 'Basis Grotesque Medium', sans-serif;
        color: #1E2434;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .dns_records_body {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
    }
    .dns_records_body div {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .dns_records_container i {
        display: none;
    }
    .location_content {
        padding-left: 0px;
    }
    .location_content_inner_container {
        flex-direction: column;
    }
    .location_content_inner_container .location_content_inner_title {
        flex: 1;
        width: 100%;
        margin-bottom: 20px;
    }
    .location_content_inner_container .location_content_inner_details {
        flex: 1;
        padding-left: 0px;
        width: 100%;
    }
    .checkout_container {
        display: flex;
        flex-direction: column;
    }
    .checkout_form {
        margin-top: 24px;
        width: 100%;
    }
    .plan_container {
        flex-direction: column;
    }
    .plan_item, .plan_item_content_header, .plan_item_content {
        width: 100%;
    }
    .plan_item_features, .plan_item_content_header, .plan_item_content {
        min-height: auto;
    }
    body.sidebar-closing .page-container {
        overflow: hidden;
    }
    .welcome-banner {
        flex-direction: column;
        padding: 24px;
    }
    .welcome-banner-video {
        order: 0;
    }
    .welcome-banner-content {
        order: 1;
        padding: 24px 0px 0px 0px;
    }
    .setup_step_preview_container {
        display: none;
    }
    .brand.inline {
        float: right;
    }
    .app_icon {
        border: 1px solid rgba(30, 36, 52, 0.1);
    }
    .header {
        border-left: none;
    }
    .header .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    body.menu-pin .header div.brand {
        padding-right: 10px;
    }
}

/* Flyer CTA */
.flyer-cta-card {
    background: #FCF9F4;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}											
.close-flyer-cta {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: 1px solid rgba(32, 32, 32, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}											
.close-flyer-cta:hover {
    transform: rotate(90deg);
}											
.close-flyer-cta span {
    color: #1E2434;
    font-size: 24px;
    line-height: 1;
}																		
.flyer-preview-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: 20px;
}
.flyer-preview-stack {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -120px;
}
.flyer-preview {
    position: absolute;
    height: 220px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    object-fit: cover;
}											
.flyer-front {
    z-index: 2;
    transform: rotate(-2deg) translateX(-20px);
}											
.flyer-back {
    z-index: 1;
    transform: rotate(8deg) translateX(30px) translateY(10px);
    opacity: 0.9;
}											
.flyer-preview-stack:hover .flyer-front {
    transform: rotate(-5deg) translateX(-20px) translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}											
.flyer-preview-stack:hover .flyer-back {
    transform: rotate(12deg) translateX(40px) translateY(15px);
    opacity: 1;
}											
.flyer-cta-title {
    font-weight: 500;
    font-size: 22px;
}											
@media (max-width: 991px) {
    .flyer-preview-stack {
        margin-bottom: 0px;
    }												
    .flyer-cta-card {
        padding: 20px;
    }												
    .flyer-cta-title {
        font-size: 22px;
    }												
    .flyer-cta-description {
        font-size: 14px;
    }												
    .flyer-preview-container {
        margin-top: 20px;
        height: 200px;
    }												
    .flyer-preview {
        height: 180px;
    }												
    .flyer-cta-actions {
        flex-direction: column;
    }												
    .flyer-cta-actions .btn {
        width: 100%;
    }
}											
@media (max-width: 767px) {
    .flyer-preview-container {
        height: 150px;
    }												
    .flyer-preview {
        height: 130px;
    }												
    .flyer-front {
        transform: rotate(-2deg) translateX(-10px);
    }												
    .flyer-back {
        transform: rotate(8deg) translateX(20px) translateY(10px);
    }
}

/* ─── Reusable Analytics Components ─── */

.kpis-container, .graph-container {
    background: #FCF9F4;
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.kpis-container .stat-card {
    background: #fff;
    border-radius: 6px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1 1 calc(50% - 10px);
}
.kpis-container.kpis-3col .stat-card {
    flex: 1 1 calc(33.333% - 10px);
}
.kpis-container .graph-card {
    flex: 1 1 100%;
    background: #fff;
    border-radius: 6px;
    padding: 20px 24px;
}
.graph-container .graph-card {
    flex: 1 1 100%;
    background: #fff;
    border-radius: 6px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-width: 0;
    overflow: hidden;
}
.graph-container .graph-card h4 {
    margin-top: 0;
}
.bite_branded .stat-card .stat-title {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 12px;
    color: rgba(30,36,52,0.5);
    margin: 0 0 8px;
}
.bite_branded .stat-card .stat-value {
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 22px;
    color: #1E2434;
    margin: 0;
    height: 22px;
    line-height: 22px;
}
.bite_branded .stat-card .stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 22px;
}
@media (max-width: 767px) {
    .kpis-container .stat-card,
    .kpis-container.kpis-3col .stat-card {
        flex: 1 1 100%;
    }
}

/* Controls bar (flex row) */
.bite_branded .controls-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bite_branded .controls-bar .ms-parent { width: auto !important; min-width: 200px; }
.bite_branded .controls-bar select.form-control { width: auto; min-width: 160px; }

/* Delta indicator — positive/negative change */
.bite_branded .delta-label {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: 'Basis Grotesque Medium', sans-serif;
    font-size: 12px;
    white-space: nowrap;
    height: 22px;
    padding: 0 10px;
    border-radius: 6px;
    border: 1px solid rgba(30,36,52,0.05);
    line-height: 1;
    box-sizing: border-box;
}
.bite_branded .delta-label.up {
    color: #6BD169;
    background: rgba(234,250,235,1);
}
.bite_branded .delta-label.down {
    color: #FF7E55;
    background: rgba(255,126,85,0.15);
}
.bite_branded .delta-label.neutral {
    color: rgba(30,36,52,0.35);
    background: rgba(30,36,52,0.05);
}

/* Block skeleton loader */
.bite_branded .skel {
    background: linear-gradient(90deg, rgba(30,36,52,0.05) 25%, rgba(30,36,52,0.02) 50%, rgba(30,36,52,0.05) 75%);
    background-size: 200% 100%;
    animation: skel-shimmer 1.5s infinite;
    border-radius: 4px;
}
@keyframes skel-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.bite_branded .skel-value { width: 100px; height: 22px; display: inline-block; }

/* Chart skeleton loader */
.chart-skeleton {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    padding: 30px 10px 26px 0;
}
.chart-skel-y-axis {
    width: 46px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 8px 0 0;
}
.chart-skel-y-label {
    display: block;
    height: 10px;
    width: 32px;
    margin-left: auto;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(30,36,52,0.06) 25%, rgba(30,36,52,0.02) 50%, rgba(30,36,52,0.06) 75%);
    background-size: 200% 100%;
    animation: skel-shimmer 1.5s infinite;
}
.chart-skel-body {
    flex: 1;
    position: relative;
}
.chart-skel-grid {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.chart-skel-grid-line {
    height: 1px;
    background: rgba(30,36,52,0.06);
}

/* Empty state — centered in container */
.bite_branded .empty-state { display: flex; align-items: center; justify-content: center; height: 100%; width: 100%; color: rgba(30,36,52,0.4); font-size: 13px; position: absolute; top: 0; left: 0; }

/* Analytics back link */
.analytics-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(30,36,52,0.5);
    text-decoration: none;
    margin-bottom: 0;
    transition: color 0.15s;
}
.analytics-back-link:hover {
    color: #1E2434;
    text-decoration: none;
}

/* Analytics subtitle */
.analytics-subtitle {
    font-size: 13px;
    color: rgba(30,36,52,0.45);
    margin-top: 4px;
    margin-bottom: 16px;
}

/* Analytics top bar */
.analytics-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 0;
}

/* ─── Make Time Queue Components ─── */

.bite_branded .queue-chart-container {
    width: 100%;
    height: 30px;
    position: relative;
}
.bite_branded .queue-chart-container canvas {
    max-height: 30px !important;
    cursor: pointer;
}
.bite_branded .queue-chart-container.queue-chart-lg {
    height: 50px;
    margin-bottom: 20px;
}
.bite_branded .queue-chart-container.queue-chart-lg canvas {
    max-height: 50px !important;
}
.bite_branded .queue-empty {
    color: rgba(30,36,52,0.4);
    font-style: italic;
    font-size: 13px;
}
.bite_branded .queue-site-make-time {
    font-size: 11px;
    color: rgba(30,36,52,0.4);
    margin-top: 2px;
}
.bite_branded .queue-col-chart {
    width: 40%;
}
.bite_branded .queue-col-expand {
    width: 20px;
}
.bite_branded .queue-table .details-control i {
    cursor: pointer;
    color: rgba(30,36,52,0.4);
}
.bite_branded .queue-table .details-control i:hover {
    color: rgba(30,36,52,0.7);
}
.bite_branded .queue-table thead th {
    font-size: 11px !important;
}
.bite_branded .table.queue-table tbody tr td,
.bite_branded .table.queue-table thead tr th {
    padding: 10px 15px !important;
    vertical-align: middle;
}
.bite_branded .queue-btn-actions {
    white-space: nowrap;
    display: flex;
    gap: 6px;
}
.bite_branded .queue-items-row {
    background-color: #FCF9F4;
}
.bite_branded .queue-items-list {
    padding: 10px 20px;
    margin: 0;
}
.bite_branded .queue-items-list li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(30,36,52,0.06);
}
.bite_branded .queue-items-list li:last-child {
    border-bottom: none;
}
.bite_branded .queue-summary-text {
    font-size: 13px;
    color: rgba(30,36,52,0.45);
}
#chartjs-tooltip {
    background: rgba(30, 36, 52, 0.9);
    color: #fff;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    pointer-events: none;
    position: fixed;
    z-index: 9999;
    white-space: nowrap;
    font-family: 'Basis Grotesque', sans-serif;
}