/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    background-color: #f8f9fa;
    color: #000;
    font-size: 14px;
}

a {
    color: #ea9435;
    text-decoration: none;
}

a:hover {
    color: #b1732f;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}
h3 {
    color: #ea9435;
}

label {
    display: inline-block;
    color: #000;
    font-size: 12px;
}

label.error {
    color: #dc3545;
    display: none;
}

hr {
    color: #cdcdcd;
    margin: 20px 0px;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    z-index: 999;
    transition: all 0.5s;
    padding: 5px 0 5px 0;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

#header .logo h1 {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #000;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar .company-image {
    height: 50px;
    width: 50px;
    margin: auto;
}

.navbar .company-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 400;
    color: #555555;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #ea9435;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #ea9435;
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 50px;
    color: #fff;
    width: 160px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #b1732f;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #ea9435;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff !important;
    background-color: #ea9435 !important;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #000;
    font-size: 40px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .desktop-nav-toggle {
        display: none;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 99999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 65px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #ea9435;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #ea9435;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f8f8f8;
    min-height: 40px;
    margin-top: 100px;
    overflow: visible;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 72px;
    }
}

.breadcrumbs h2 {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
}

@media (max-width: 992px) {
    .breadcrumbs ol {
        margin-top: 10px;
    }
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #3c3c3c;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    left: 0;
    bottom: 0;
    width: 100%;
    position: fixed;
    background: #444;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    z-index: 99999;
}

@media (max-width: 768px) {
    #footer {
        position: relative;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f7fbfe;
}

.section-title {
    text-align: center;
}

.section-title h2 {
    font-size: 30px;
    font-weight: bold;
    text-transform: capitalize;
    position: relative;
    color: #000;
}

.section-title h2::before {
    margin: 0 15px 10px 0;
}

.section-title h2::after {
    margin: 0 0 10px 15px;
}

.section-title p {
    margin: 15px 0 0 0;
}

* .services .icon-box::before {
    content: "";
    position: absolute;
    background: #e1f0fa;
    right: -60px;
    top: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    transition: all 0.3s;
    z-index: -1;
}

/*--------------------------------------------------------------
# Login Section
--------------------------------------------------------------*/
.login-section {
    position: relative;
    background: url("/assets/img/login/banner.jpg");
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 20px;
}

.login-section .powered-by {
    position: relative;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1.5px;
    z-index: 1;
}
.login-section img {
    position: relative;
    z-index: 1;
}

.login-company-image {
    height: 80px;
    width: 80px;
    margin: auto;
}

.login-company-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .login-section {
        margin-bottom: 0px;
    }
}

/*--------------------------------------------------------------
# Content Section
--------------------------------------------------------------*/

.content-section {
    padding: 20px 0;
    margin-bottom: 20px;
}

.content-section .section-title h2 {
    text-align: left;
    font-size: 30px;
    font-weight: normal;
    text-transform: capitalize;
    position: relative;
    color: #000;
}

@media (max-width: 768px) {
    .content-section {
        margin-top: 0px;
    }
}
/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/

.accordion-header {
    border-bottom: 1px solid #eeeeee;
}

.accordion-header.dark .accordion-button {
    background: #444;
    color: #fff;
    font-weight: normal;
}
.accordion-header.dark .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button {
    font-weight: bold;
    background: #eee;
    margin-bottom: 3px;
}

.accordion-button:not(.collapsed) {
    background: #eee;
}

.accordion-button:focus {
    border-color: unset;
    box-shadow: unset;
}

.accordion-body {
    padding: unset;
}

.accordion-body .list {
    list-style-type: none;
    padding-left: 15px;
}
.accordion-body .list li {
    border-bottom: 1px dotted #eee;
    padding: 15px 10px;
}

.accordion-item .bi {
    font-size: 16px;
    font-weight: bold;
}

/*--------------------------------------------------------------
# Card
--------------------------------------------------------------*/
.card-header {
    background-color: #444444;
    color: #fff;
    border-bottom: 1px solid #eeeeee;
}

.card-title {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.card-title > *:first-child {
    flex: 1;
}
.card-title .btn {
    padding: 3px 10px;
}
.card-title .btn span {
    margin-left: 8px;
}
.card-title .btn .bi {
    font-size: 14px;
}

.card-footer {
    background-color: #fff;
    border-top: 1px solid #eeeeee;
}

@media (max-width: 768px) {
    .card-title {
        flex-direction: column;
    }
    .card-title > * {
        margin-bottom: 8px;
    }
}

/*--------------------------------------------------------------
# Select 2
--------------------------------------------------------------*/

.select2-container {
    width: 100% !important;
}
.select2-container--open .select2-dropdown {
    z-index: 1100;
}
.select2-results__option {
    margin-bottom: 2px;
}
.select2-container--default .select2-selection--single,
.select2-selection--multiple {
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    min-height: 38px !important;
    height: auto !important;
}
.select2-container--default .select2-search--inline .select2-search__field {
    padding-left: 15px;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 36px;
}
.select2-container--default
    .select2-selection--multiple
    .select2-selection__rendered {
    line-height: 27px;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 7px;
}
.select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background-color: #ea9435 !important;
}
.select2-results__option[aria-selected="true"] {
    background-color: #e0e0e0 !important;
    color: #000 !important;
}
.select2-selection__rendered {
    display: block !important;
}
.select2-selection__choice {
    display: block;
    margin-top: 2px !important;
    margin-bottom: 2px !important;
}
.select2-selection--multiple
    .select2-selection__rendered
    .select2-selection__choice {
    background-color: #e0e0e0 !important;
}
.select2-container--default
    .select2-search--dropdown
    .select2-search__field:focus-visible {
    outline: 0;
    border: 1px solid #ea9435 !important;
}
/*--------------------------------------------------------------
# Datatable
--------------------------------------------------------------*/
.table {
    width: 100% !important;
    font-size: 13px;
}
.table tr td {
    padding-top: 15px;
    padding-bottom: 15px;
    vertical-align: middle;
}
.table-responsive {
    width: 100%;
    overflow: auto;
}
.page-link {
    color: #000;
}
.page-link:focus {
    box-shadow: unset;
}
.active > .page-link,
.page-link.active {
    background-color: #ea9435;
    border-color: #b1732f;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    margin-right: 0px;
}
table.dataTable th.dt-type-numeric,
table.dataTable th.dt-type-date,
table.dataTable td.dt-type-numeric,
table.dataTable td.dt-type-date {
    text-align: left;
}

.sales-table td,
.sales-table th {
    border: 1px solid #ddd;
}

.costing-datatable,
.budget-datatable {
    table-layout: fixed;
    width: 100% !important;
}
.costing-datatable tfoot {
    display: none;
}
.dt-scroll-body {
    max-height: 45vh !important;
}
.dt-scroll-foot tfoot {
    display: table-footer-group;
}

.pricing-table tr td {
    padding-top: 5px;
    padding-bottom: 5px;
}
.table .positive {
    color: green;
    font-weight: bold;
}
.table .negative {
    color: red;
    font-weight: bold;
}

.builder-datatable .dt-column-order {
    display: none;
}

.builder-datatable tr td,
.operation-datatable tr td {
    vertical-align: top !important;
}

.checklist-datatable tr td {
    vertical-align: middle !important;
}

.dt-rowReorder-moving {
    outline: 2px solid #444 !important;
}
div.dt-rowReorder-float-parent {
    outline: 2px solid #ea9435 !important;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    display: block;
    margin-bottom: 10px;
    width: 10px;
}

@media (max-width: 768px) {
    div.dt-container div.dt-length label {
        text-align: center;
        display: block;
    }
}

/*--------------------------------------------------------------
# Badge
--------------------------------------------------------------*/
.badge {
    text-transform: capitalize;
}

.badge-primary {
    background-color: #ea9435;
    color: #fff;
}

.badge-secondary {
    background-color: #8a7cc3;
    color: #fff;
}

.badge-success {
    background-color: #5fd279;
    color: #fff;
}

.badge-danger {
    background-color: #f56573;
    color: #fff;
}

.badge-warning {
    background-color: #eee571;
    color: #000;
}

.badge-info {
    background-color: #5ad2e8;
    color: #fff;
}

.badge-dark {
    background-color: #686363;
    color: #fff;
}

.badge-light {
    background-color: #bbb;
    color: #333;
}

/*--------------------------------------------------------------
# Auto Complete
--------------------------------------------------------------*/
.auto-search-wrapper input {
    border: 1px solid #d7d7d7;
    box-shadow: none;
    box-sizing: border-box;
    font-size: 16px;
    padding: 7px 45px 7px 10px;
    width: 100%;
}

.auto-clear {
    top: 5px;
}

.auto-clear:before {
    height: 15px;
    width: 15px;
}

/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/

.noUi-connect {
    background: #ea9435 !important;
}

.noUi-handle.noUi-handle-lower .tooltip {
    left: -17px !important;
    top: 30px !important;
    position: relative;
}

.noUi-connect {
    background: #ea9435 !important;
}

.noUi-handle.noUi-handle-lower .tooltip {
    left: -17px !important;
    top: 30px !important;
    position: relative;
}

/*--------------------------------------------------------------
# Image Cropper
--------------------------------------------------------------*/

.crop-container {
    width: 100%;
}
.cropper-view-box {
    display: block;
    height: 100%;
    outline: 2px solid #ea9435;
    outline-color: #ea9435;
    overflow: hidden;
    width: 100%;
}

/*--------------------------------------------------------------
# Calendar
--------------------------------------------------------------*/
#calendar {
    height: 70vh;
}
#calendar a {
    color: #444444;
    font-weight: 600;
}
.fc-button-group button {
    background-color: #444444 !important;
    border-color: #444444 !important;
    text-transform: capitalize !important;
}
.fc-button-group button:focus {
    box-shadow: unset !important;
}
.fc-button-group button.fc-button-active {
    background-color: #ea9435 !important;
    border-color: #ea9435 !important;
}

.fc-today-button {
    background-color: #ea9435 !important;
    border-color: #ea9435 !important;
    text-transform: capitalize !important;
}
.calendar-event {
    background-color: #ea9435;
    border-color: #ea9435;
    font-weight: bold;
    padding: 4px 2px;
}
.calendar-event.fc-list-event {
    background-color: transparent !important;
}
.fc-list-event-dot {
    border: calc(var(--fc-list-event-dot-width) / 2) solid #ea9435 !important;
}

@media (max-width: 768px) {
    .fc-header-toolbar {
        display: flex;
        flex-direction: column;
    }
    .fc-header-toolbar .fc-toolbar-chunk {
        margin-bottom: 20px;
    }
}
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
#main.cms {
    padding: 0px 30px;
    margin-bottom: 60px;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.form-control:focus {
    box-shadow: unset;
    border-color: #ea9435;
}

.input-group-append {
    cursor: pointer;
}
.input-group-append .input-group-text {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.btn-dark,
.btn-danger {
    font-size: 14px;
}

.btn-stomp,
.btn-stomp:focus {
    color: #fff;
    background: #ea9435;
    font-size: 14px;
}

.btn-stomp:hover,
.btn-stomp:focus:hover {
    color: #fff;
    background: #b1732f;
}

.btn-close:focus {
    box-shadow: unset;
}

.btn-danger {
    font-size: 14px;
}
.btn-danger:hover {
    background-color: #8b1d27 !important;
}

.filter-content {
    margin-top: 20px;
}

.modal-body {
    max-height: 80vh;
    overflow: auto;
}

.company-table-img {
    height: 50px;
    width: 50px;
}

.company-trip-img {
    height: 100px;
    width: 100px;
}

.company-table-img img,
.company-trip-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.crop-modal {
    background-color: #0000008f;
    z-index: 999;
}

.text-primary {
    font-weight: bold;
    color: #ea9435 !important;
}

.back {
    color: #ea9435;
    font-weight: bolder;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: 0.7;
}

.no-data {
    text-align: center;
    width: 100%;
    padding: 50px;
}

.desktop-toggle {
    display: block;
}

.mobile-toggle {
    display: none;
}

.metrics .list,
.stakeholder .list {
    list-style-type: none;
    padding-left: 0px;
}
.metrics .list li {
    border-bottom: 1px dotted #eee;
    padding: 13px 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.stakeholder .list li {
    border-bottom: 1px dotted #cccc;
    padding: 6px 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.stakeholder .list li:first-child {
    border-bottom: 1px dotted #eee;
    font-weight: bold;
}
.metrics .list li span:first-child,
.stakeholder .list li span:first-child {
    flex: 1;
    margin-right: 30px;
    text-align: left;
}

.metrics .list li span {
    font-size: 12px;
}

.stakeholder .list li div:first-child {
    flex: 1;
    margin-right: 30px;
    text-align: left;
    min-width: 250px;
    max-width: 250px;
}

.stakeholder .list li div {
    font-size: 12px;
    margin-right: 30px;
    min-width: 100px;
    max-width: 100px;
    text-align: center;
}
.stakeholder .list li div:last-child {
    min-width: 300px;
    max-width: 300px;
    text-align: left;
}

.chart-error {
    display: flex;
    color: #444;
    text-align: center;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.chart-label {
    color: #fff;
    margin-right: 15px;
    font-size: 14px;
    font-weight: bold;
}

.cursor {
    cursor: pointer;
}

.leaflet-top,
.leaflet-bottom {
    z-index: auto;
}

.nav-tabs .nav-link {
    color: #000;
    border-color: #ccc;
    margin-right: 5px;
    font-size: 12px;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: #ea9435;
    color: #fff;
}

.nav-link i {
    color: #333;
    border: 0.5px solid #333;
    margin-left: 5px;
    border-radius: 50%;
    padding: 3px 5px;
    font-size: 10px;
}
.nav-link.active i {
    color: #fff;
    border: 1px solid #fff;
}
.sustainable-container {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    padding: 10px 15px;
}
.sustainable-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin-right: 20px;
}

ul.sustainable-story-list {
    list-style: none;
    padding: 0px;
}

ul.sustainable-story-list li {
    margin-bottom: 10px;
}
.reorder {
    font-size: 14px;
}
.hidden {
    visibility: hidden;
}
.text-right {
    text-align: right;
}
.pending-input {
    border: 2px solid #ea9435 !important;
}
.complete-input {
    border: 2px solid #5fd279 !important;
}

.link-page {
    font-weight: bold;
    color: #c86900;
}
.link-page:hover {
    font-weight: bold;
    color: #b1732f;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.lock {
    font-size: 13px;
    color: #333;
}

.intro-suggestion {
    position: relative;
}
.suggestion {
    position: absolute;
    top: 40px;
    right: 20px;
    font-size: 12px;
}
.suggestion:focus {
    font-size: 12px;
}
#suggestionContent .suggestion-detail {
    border-bottom: 1px solid #333;
}
.cke_notifications_area {
    display: none;
}
.powered_by_resonate {
    font-size: 12px;
    font-weight: normal;
    color: #fff;
}
.powered_by_resonate:hover {
    font-weight: bold;
    color: #fff;
}

.mapView {
    height: 400px;
    width: 100%;
}
.breadcrumb-btn {
    display: flex;
    position: relative;
    gap: 5px;
    overflow: visible !important;
}
@media (max-width: 991px) {
    .breadcrumb-btn {
        margin-top: 20px;
    }
    .mobile-toggle {
        display: block;
    }
    .desktop-toggle {
        display: none;
    }
}
@media (max-width: 768px) {
    .sustainable-container {
        flex-direction: column;
    }
    .sustainable-img {
        margin-bottom: 20px;
    }
    #main.cms {
        padding: 0px 0px;
        margin-bottom: 15px;
    }
}
@media (max-width: 438px) {
    .suggestion {
        top: 120px;
    }
}

.app-image {
    height: 100px;
    width: 100px;
    flex: 0 0 auto;
}

.app-image-detail {
    height: 150px;
    width: 150px;
    flex: 0 0 auto;
}

.app-image img,
.app-image-detail img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
#processing {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: #ffffffcc;
    width: 100%;
    height: 100vh;
    z-index: 999999999;
    top: 0;
}
#processing.active {
    display: flex;
}
/* CHATGPT */
.chat-gpt-container {
    position: relative;
}
.chat-gpt-container label {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #aaa;
    z-index: 99;
}

.chat-gpt-textarea {
    padding-top: 30px;
    resize: none;
    font-size: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
/* Highlight Gallery: 3-column layout (2 small | 1 large | 2 small) */
.highlight-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.highlight-gallery__row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    max-width: 100%;
}
.highlight-gallery__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
}
.highlight-gallery__col--left,
.highlight-gallery__col--right {
    flex: 0 0 200px;
    width: 200px;
}
.highlight-gallery__col--center {
    flex: 0 0 280px;
    width: 280px;
}
.highlight-gallery__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
.highlight-gallery__item--small .highlight-gallery__image {
    width: 200px;
    height: 180px;
}
.highlight-gallery__item--large .highlight-gallery__image {
    width: 280px;
    height: 372px; /* 2 × 180 + 12 gap */
}
.highlight-gallery__image {
    position: relative;
    display: block;
    background: #eee;
}
.highlight-gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 0;
}
.highlight-gallery__caption {
    position: absolute;
    bottom: 8px;
    left: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.highlight-gallery__credit {
    display: block;
    font-size: 11px;
    color: #666;
    margin-top: 4px;
    padding: 0 2px;
}
@media (max-width: 768px) {
    .highlight-gallery__row {
        flex-direction: column;
        align-items: center;
    }
    .highlight-gallery__col--left,
    .highlight-gallery__col--right,
    .highlight-gallery__col--center {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    .highlight-gallery__item--small .highlight-gallery__image {
        width: 100%;
        height: 220px;
    }
    .highlight-gallery__item--large .highlight-gallery__image {
        width: 100%;
        height: 360px;
    }
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.image-container.lg {
    gap: 40px;
}
#highlight-gallery .content {
    justify-content: flex-start;
    align-items: flex-start;
}
.image-container .content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    border: 1px solid #eee;
    padding: 20px 15px;
}
.image-container .content label {
    font-size: 12px;
    margin-bottom: 5px;
}

.image-container .content .image-caption {
    width: 200px;
    font-size: 12px;
    resize: none;
    min-height: 80px;
}

.image-container .content .image-credit {
    width: 200px;
    font-size: 12px;
}

.image-container .content textarea::placeholder {
    color: #999;
    opacity: 1;
    font-size: 12px;
}
.image-container .content .image-box {
    position: relative;
    width: 200px;
    height: 200px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.image-container.lg .content .image-caption {
    width: 300px;
}

.image-container.lg .content .image-credit {
    width: 300px;
}

.image-container.lg .content .image-box {
    width: 300px;
    height: 300px;
}

.image-box img {
    padding: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery-style cards (Top Tips, Recommended Reading) – summary and link */
.image-container .content .gallery-card-summary {
    width: 200px;
    font-size: 12px;
    line-height: 1.4;
    margin: 0 0 8px 0;
    min-height: 0;
    resize: none;
}
.image-container .content .gallery-card-link {
    font-size: 12px;
    display: inline-block;
}
.image-container.lg .content .gallery-card-summary {
    width: 300px;
}
/* Display-only gallery cards: no fixed min-height on caption */
.image-container .content .image-caption.gallery-card-caption,
.image-container .content .image-caption.mb-1 {
    min-height: 0;
}

/* Equal-height cards (Local Gems, Top Tips) */
.image-container--equal-height {
    align-items: stretch;
}
.image-container--equal-height .content {
    width: 232px;
    min-width: 232px;
    max-width: 232px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 0 0 auto;
}
.image-container--equal-height .content .image-box {
    flex-shrink: 0;
}
.image-container--equal-height .content .gallery-card-summary {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
}
.image-container--equal-height .content .gallery-card-link {
    flex-shrink: 0;
    margin-top: auto;
}

.image-box a {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 0px 3px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .image-container .content .image-box {
        width: 300px;
        height: 300px;
    }
    .image-container .content .image-caption {
        width: 300px;
    }
    .image-container .content .image-credit {
        width: 300px;
    }
}

@media (max-width: 430px) {
    .image-container .content .image-box {
        width: 100%;
        height: 300px;
    }
    .image-container .content .image-caption {
        width: 100%;
    }
    .image-container .content .image-credit {
        width: 100%;
    }
}
.table-gray {
    background-color: #f4f4f4 !important;
}
/* .hide_in_template {
    display: none;
} */
.dt-buttons.btn-group.flex-wrap {
    display: none;
}
.remove-useful-link {
    margin-top: 22px;
}
