html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* Login Page Specific Styles */
:root {
    --bs-primary: #007bff;
    --background-light: #f4f6f9;
    --background-dark: #1a1c1e;
}

body.login-body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-light);
    transition: background-color 0.2s, color 0.2s;
    margin-bottom: 0 !important;
    min-height: 100vh; /* ensure login pages always cover full viewport */
    display: flex;
    flex-direction: column;
}

/* Make sure login layout panels always fill viewport to avoid a white strip at the bottom when scrolling */
html, body {
    height: 100%;
}

.login-wrapper {
    min-height: 100vh; /* already present but reinforce */
    display: flex;
    flex: 1 1 auto;
}

.login-left,
.login-right {
    min-height: 100vh;
}

/* Ensure right panel background extends to bottom */
.login-right {
    background-color: #fff;
}

    body.login-body.dark-mode {
        background-color: var(--background-dark);
        color: #f8f9fa;
    }

.login-wrapper {
    min-height: 100vh;
}

.login-left {
    position: relative;
    background-color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(60px);
    mix-blend-mode: multiply;
    animation: pulse 4s infinite alternate;
}

.blob-top {
    top: -10%;
    left: -10%;
    background-color: #60a5fa;
    opacity: 0.2;
}

.blob-bottom {
    bottom: -10%;
    right: -10%;
    background-color: #2563eb;
    opacity: 0.3;
}

@keyframes pulse {
    from {
        opacity: 0.2;
    }

    to {
        opacity: 0.4;
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-right {
    display: flex;
    flex-direction: column;
}

.form-icon-input {
    position: relative;
}

    .form-icon-input .form-control {
        padding-left: 2.75rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        border-radius: 0.5rem;
        background-color: #f8f9fa;
        border-color: #dee2e6;
    }

        .form-icon-input .form-control:focus {
            background-color: #fff;
            border-color: var(--bs-primary);
            box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
        }

    .form-icon-input .material-symbols-outlined {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #adb5bd;
        pointer-events: none;
    }

.login-btn {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1.05rem;
    transition: all 0.2s ease;
}

    .login-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    }

.theme-toggle {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: 1px solid var(--bs-border-color);
    background-color: #fff;
    color: #495057;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 1050;
}

    .theme-toggle:hover {
        transform: scale(1.1);
    }

body.login-body.dark-mode .theme-toggle {
    background-color: #343a40;
    border-color: #495057;
    color: #f8f9fa;
}

body.login-body.dark-mode .card,
body.login-body.dark-mode .form-control,
body.login-body.dark-mode .form-check-input {
    background-color: #212529;
    border-color: #343a40;
    color: #f8f9fa;
}

    body.login-body.dark-mode .form-control::placeholder {
        color: #adb5bd;
    }

body.login-body.dark-mode .text-muted {
    color: #adb5bd !important;
}

body.login-body.dark-mode .text-dark {
    color: #f8f9fa !important;
}

body.login-body.dark-mode .bg-white {
    background-color: #212529 !important;
}

body.login-body.dark-mode .logo-img {
    filter: brightness(2);
}

body.login-body.dark-mode .divider {
    background-color: #495057;
}

.divider {
    width: 1px;
    height: 1.5rem;
    background-color: #dee2e6;
    margin: 0 1rem;
}

/* Dashboard Layout Specific Styles */
:root {
    --sidebar-width: 250px;
    --sidebar-collapsed-width: 76px;
    --topbar-height: 4rem;
}

body.dashboard-body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-light);
    color: #191c1e;
    margin-bottom: 0;
    display: flex;
    min-height: 100vh;
    overflow: hidden;
}

.dashboard-sidebar {
    width: var(--sidebar-width);
    background-color: #141d23;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1040;
    transition: width 0.3s ease, transform 0.3s ease;
}

/* Mobile: make sidebar hidden by default and act as a dropdown/overlay */
@media (max-width: 767.98px) {
    .dashboard-sidebar {
        top: var(--topbar-height);
        left: 0;
        width: 100%;
        height: calc(100% - var(--topbar-height));
        transform: translateY(-100%);
        transition: transform 0.25s ease;
        z-index: 1045;
        border-radius: 0;
    }

    /* When mobile-open class present, slide down the sidebar as a dropdown */
    body.sidebar-mobile-open .dashboard-sidebar {
        transform: translateY(0) !important;
        z-index: 1060; /* ensure sidebar is above the backdrop */
    }

    /* Allow visible overflow when mobile sidebar is open so it isn't clipped */
    body.sidebar-mobile-open {
        overflow: visible;
    }

    /* Ensure wrapper does not shift on mobile open */
    .dashboard-wrapper {
        margin-left: 0 !important;
    }

    /* Make sidebar items full-width on mobile dropdown */
    .dashboard-sidebar .sidebar-item {
        margin: 0;
        border-radius: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.sidebar-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-logo {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.sidebar-nav {
    flex: 1;
    padding-top: 1rem;
    overflow-y: auto;
}

/* Submenu styles */
.sidebar-group {
    display: block;
}

.sidebar-item.has-children {
    position: relative;
}

.sidebar-item .chevron {
    margin-left: auto;
    transition: transform 0.2s ease;
    font-size: 1rem;
    color: #adb5bd;
}

.sidebar-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding-left: 0.35rem;
}

.sidebar-group.open > .sidebar-submenu {
    max-height: 480px; /* large enough for items; allows transition */
}

.sidebar-group.open > .sidebar-item .chevron {
    transform: rotate(180deg);
}

.sidebar-submenu > .sidebar-item,
.sidebar-submenu > .sidebar-group > .sidebar-item {
    margin: 0.05rem 0.5rem 0.05rem 1.25rem;
    padding: 0.3rem 1rem 0.3rem 0.875rem;
    font-size: 0.8125rem;
    gap: 0.625rem;
}

.sidebar-submenu > .sidebar-item .material-symbols-outlined,
.sidebar-submenu > .sidebar-group > .sidebar-item .material-symbols-outlined {
    font-size: 0.95rem;
}

.sidebar-submenu .sidebar-submenu > .sidebar-item,
.sidebar-submenu .sidebar-submenu > .sidebar-group > .sidebar-item {
    margin: 0.025rem 0.5rem 0.025rem 2rem;
    padding: 0.24rem 1rem 0.24rem 0.75rem;
    font-size: 0.775rem;
    gap: 0.5rem;
}

.sidebar-submenu .sidebar-submenu > .sidebar-item .material-symbols-outlined,
.sidebar-submenu .sidebar-submenu > .sidebar-group > .sidebar-item .material-symbols-outlined {
    font-size: 0.875rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* Reduced vertical padding/margin to tighten spacing between root menu items */
    padding: 0.4rem 1rem;
    margin: 0.1rem 0.5rem;
    border-radius: 0.5rem;
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.875rem;
}

    .sidebar-item:hover, .sidebar-item.active {
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .sidebar-item.active {
        border-right: 4px solid #ef4444;
    }

.sidebar-footer {
    height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #3f484f;
    padding: 0 1.5rem;
}

.dashboard-wrapper {
    margin-left: var(--sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    background-color: #f7f9fc;
}

.dashboard-topbar {
    height: var(--topbar-height);
    background-color: #ffffff;
    border-bottom: 1px solid #e0e3e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    z-index: 1080;
    position: relative;
}

.topbar-logos img {
    height: 1.25rem;
    opacity: 0.8;
}

/* Place the sidebar toggle at the left edge of the topbar */
#sidebarToggleBtn {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1070;
}

/* Ensure left group has left padding so logos/text don't overlap the absolute toggle */
.topbar-left {
    padding-left: 3rem; /* space for the toggle */
}

/* On small screens place the toggle on the right edge of the topbar */
@media (max-width: 767.98px) {
    .dashboard-topbar {
        padding: 0 0.75rem;
    }

    .topbar-left .topbar-logos {
        margin-left: 0.25rem;
    }

    .topbar-right {
        gap: 0.5rem;
    }
}

.dashboard-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.dashboard-footer {
    height: 72px;
    padding: 0 1.5rem;
    background-color: #ffffff;
    border-top: 1px solid #e0e3e6;
    font-size: 0.7rem;
    color: #6c757d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

/* When collapsed show a narrow icon strip instead of hiding completely */
body.sidebar-collapsed .dashboard-sidebar {
    width: var(--sidebar-collapsed-width);
}

body.sidebar-collapsed .dashboard-wrapper {
    margin-left: var(--sidebar-collapsed-width);
}

/* Sidebar header: hide text and center logo when collapsed */
body.sidebar-collapsed .sidebar-header {
    justify-content: center;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

    body.sidebar-collapsed .sidebar-header h1,
    body.sidebar-collapsed .sidebar-header p {
        display: none;
    }

/* Sidebar items: show only icons and center them */
body.sidebar-collapsed .sidebar-item {
    justify-content: center;
    padding: 0.75rem 0.5rem;
}

    body.sidebar-collapsed .sidebar-item > span:nth-child(2) {
        display: none; /* hide label text */
    }

/* Hide child items and chevrons in collapsed mode so only parent icons are shown */
body.sidebar-collapsed:not(.sidebar-hover-expanded) .sidebar-submenu {
    display: none !important;
}

body.sidebar-collapsed:not(.sidebar-hover-expanded) .sidebar-item .chevron {
    display: none;
}

/* Auto-expand collapsed sidebar on hover without shifting page content */
body.sidebar-collapsed.sidebar-hover-expanded .dashboard-sidebar {
    width: var(--sidebar-width);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}

body.sidebar-collapsed.sidebar-hover-expanded .sidebar-header {
    justify-content: flex-start;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

body.sidebar-collapsed.sidebar-hover-expanded .sidebar-header h1,
body.sidebar-collapsed.sidebar-hover-expanded .sidebar-header p {
    display: block;
}

body.sidebar-collapsed.sidebar-hover-expanded .sidebar-item {
    justify-content: flex-start;
    padding: 0.75rem 1rem;
}

body.sidebar-collapsed.sidebar-hover-expanded .sidebar-item > span:nth-child(2) {
    display: inline;
}

body.sidebar-collapsed.sidebar-hover-expanded .sidebar-item .chevron {
    display: inline-flex;
}

/* Footer: hide text but keep spacing */
body.sidebar-collapsed .sidebar-footer p {
    display: none;
}

/* Mobile override: prevent collapsed icon-strip from taking effect on small screens
   If the sidebar-collapsed class exists while on mobile (e.g., due to resize),
   force the full-width dropdown behavior instead. This must come after the
   collapsed rules to win when both classes are present. */
@media (max-width: 767.98px) {
    body.sidebar-collapsed .dashboard-sidebar {
        width: 100% !important;
        top: var(--topbar-height) !important;
        height: calc(100% - var(--topbar-height)) !important;
        transform: translateY(0) !important;
        z-index: 1060 !important;
    }

    body.sidebar-collapsed .dashboard-wrapper {
        margin-left: 0 !important;
    }
}

.dashboard-footer a {
    color: #6c757d;
    text-decoration: none;
    margin-left: 1rem;
}

    .dashboard-footer a:hover {
        color: var(--bs-primary);
        text-decoration: underline;
    }

.rounded-four {
    border-radius: 0.5rem;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
}

/* Log1 Page specific overrides */
.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}

.filter-icon {
    color: var(--bs-primary);
    font-size: 1rem;
}


/*********** NOTIFICATIONS & POPUPS  ***********/



.bar-notification-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    line-height: 16px;
    color: #fff;
    opacity: 0.95;
}

body.dashboard-body .bar-notification-container {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    z-index: 1;
    padding: 0 1.5rem;
    margin-top: 0.75rem;
    opacity: 1;
}

body.dashboard-body .bar-notification {
    border-radius: 0.5rem;
}

@media (max-width: 767.98px) {
    body.dashboard-body .bar-notification-container {
        padding: 0 0.75rem;
        margin-top: 0.5rem;
    }
}

.bar-notification.success {
    background-color: #4bb07a;
}

.bar-notification.error {
    background-color: var(--error-red-color);
}

.bar-notification.warning {
    background-color: #f39c12;
}

/* Ensure notification background is applied even if other styles override it */
.bar-notification-container .bar-notification.success,
.bar-notification.success {
    background-color: #4bb07a !important;
}
.bar-notification-container .bar-notification.error,
.bar-notification.error {
    background-color: var(--error-red-color, #e4444c) !important;
}
.bar-notification-container .bar-notification.warning,
.bar-notification.warning {
    background-color: #f39c12 !important;
}

.bar-notification {
    position: relative;
    display: none;
    padding: 15px 25px 15px 10px;
}

    .bar-notification .content {
        margin: 0 10px 0 0;
    }

        .bar-notification .content a {
            color: #fff;
            text-decoration: underline;
        }

    .bar-notification .close {
        position: absolute;
        top: 0;
        right: 0;
        width: 32px;
        height: 32px;
        margin: 7px;
        background: #fff url('../images/close.png') center no-repeat;
        cursor: pointer;
    }

.popup-notification {
    border-radius: 5px;
    padding: 3px;
    margin: 5px 0;
}

    .popup-notification.success {
        border: 2px rgba( 75,176,122,.5) solid;
    }

    .popup-notification.error {
        border: 2px rgba( 228,68,76,.5) solid;
    }

    .popup-notification.warning {
        border: 2px rgba( 243,156,18,.5) solid;
    }

.noscript {
    border-bottom: 1px solid var(--dark-gray-color);
    background-color: #ff9;
    padding: 30px 15px;
    text-align: center;
    line-height: 22px;
    color: var(--dark-gray-color);
}

.ajax-loading-block-window {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    background: url('../images/loading.gif') center no-repeat;
}

.please-wait {
    background: url('../images/ajax-loader-small.gif') no-repeat;
    padding-left: 20px;
    font-size: 14px;
}

.ui-dialog {
    max-width: 90%;
    border: 1px solid #ddd;
    box-shadow: 0 0 2px rgba(0,0,0,0.15);
    overflow: hidden;
    background-color: #fff;
    /*override jQuery UI styles, do not delete doubled properties*/
    border-radius: 0;
    padding: 0;
    font: normal 14px Arial, Helvetica, sans-serif;
}

    .ui-dialog:before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
    }

.ui-dialog-titlebar {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    background-color: #eee;
    padding: 10px 15px;
    /*override jQuery UI styles, do not delete doubled properties*/
    border-width: 0 0 1px;
    border-radius: 0;
    background-image: none;
    padding: 10px 15px !important;
    font-weight: normal;
    cursor: auto !important;
}

    .ui-dialog-titlebar > span {
        float: left;
        font-size: 18px;
        color: var(--dark-gray-color);
        /*override jQuery UI styles, do not delete doubled properties*/
        margin: 0 !important;
    }

    .ui-dialog-titlebar button {
        position: absolute;
        top: 0;
        right: 0;
        width: 42px;
        height: 42px;
        border: none;
        overflow: hidden;
        background: url('../images/close.png') center no-repeat;
        font-size: 0;
        /*override jQuery UI styles, do not delete doubled properties*/
        top: 0 !important;
        right: 0 !important;
        width: 42px !important;
        height: 42px !important;
        margin: 0 !important;
        border: none !important;
        border-radius: 0;
        background: url('../images/close.png') center no-repeat !important;
        padding: 0 !important;
    }

        .ui-dialog-titlebar button span {
            display: none !important;
        }

.ui-dialog-content {
    padding: 15px;
    line-height: 20px;
    /*override jQuery UI styles, do not delete doubled properties*/
    background-color: #fff !important;
    padding: 15px 15px 20px 15px !important;
    color: var(--gray-color);
}

    .ui-dialog-content .page {
        min-height: 0;
    }

    .ui-dialog-content .page-title {
        min-height: 0;
        margin: 0 0 15px;
        padding: 0px 10px 10px 10px;
        text-align: center;
    }

        .ui-dialog-content .page-title h1 {
            font-size: 24px;
            line-height: 30px;
        }

    .ui-dialog-content .back-in-stock-subscription-page {
        text-align: center;
    }

        .ui-dialog-content .back-in-stock-subscription-page .tooltip {
            margin-bottom: 10px;
        }

        .ui-dialog-content .back-in-stock-subscription-page .button-1 {
            border: none;
            background-color: var(--accent-blue-color);
            padding: 10px 15px;
            font-size: 15px;
            color: #fff;
            text-transform: uppercase;
        }

            .ui-dialog-content .back-in-stock-subscription-page .button-1:hover,
            .ui-dialog-content .back-in-stock-subscription-page .button-1:focus {
                background-color: var(--accent-blue-active-color);
            }

/* Reduce dashboard footer height and ensure overrides take effect */
body .dashboard-footer {
  padding: 4px 12px !important;
  min-height: 0 !important;
  height: 36px !important;        /* adjust as needed */
  line-height: 36px !important;   /* vertically center single-line text */
  font-size: 12px !important;
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
}

body .dashboard-footer .d-flex {
  margin: 0 !important;
  padding: 0 !important;
  height: 100% !important;
}

body .dashboard-footer span {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
}



.label-wrapper .form-label {
    margin-bottom: 0;
}

.ico-help {
    cursor: help;
    font-size: 1.15rem;
    color: #3c8dbc; /* muted color */
}

    .ico-help:hover {
        color: #0d6efd; /* bootstrap primary on hover */
    }

.page-title-ico {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.user-form-editor .card-body > .d-flex:first-child {
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.user-form-editor .form-group.row {
    margin-bottom: 1rem;
}

.user-form-editor .form-group.row:last-child {
    margin-bottom: 0;
}

.user-form-editor .form-group.row .col-md-3 {
    padding-top: .45rem;
}

.booking-item-editor .content {
    padding-top: 0.25rem;
}

.booking-item-editor .card-body {
    padding: 1rem 1.25rem;
}

.booking-item-editor .form-group.row {
    align-items: flex-start;
    margin-bottom: 1rem;
}

.booking-item-editor .form-group.row .col,
.booking-item-editor .form-group.row [class*="col-"] {
    min-width: 0;
}

.booking-item-editor .booking-insertion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(108px, 108px));
    gap: 0.75rem;
    justify-content: center;
    justify-items: center;
    align-items: start;
}

.booking-item-editor .booking-insertion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.booking-item-editor .booking-insertion-item .form-control {
    max-width: 92px;
    text-align: center;
}

.booking-item-editor .booking-summary {
    font-size: 0.875rem;
}

.booking-item-editor .select2-container {
    width: 100% !important;
}

.sidebar-logo-sm {
    max-height: 48px !important;
    width: auto;
    padding:0;
    margin:0;
    /*object-fit: contain;*/
}
.modal-backdrop {
    z-index: 20000 !important;
}

.modal {
    z-index: 20001 !important;
}

.modal-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.modal-title {
    flex: 1 !important;
}

.card-search-toggle {
    transition: color 0.2s ease;
}

.card-search-toggle:hover {
    color: #0d6efd;
}

.select2-blue {
    width: 100%;
}

.card-search .select2-blue {
    max-width: 425px;
}

.select2-blue .select2-container--default .select2-selection--single {
    height: 38px;
}

.select2-blue .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    padding-left: .75rem;
    padding-right: 2.5rem;
}

.select2-blue .select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute;
    top: 50%;
    right: 1.75rem;
    margin: 0;
    padding: 0;
    line-height: 1;
    transform: translateY(-50%);
}

.select2-selection--multiple {
    height: auto;
}

.select2-blue .select2-container--default .select2-selection--single, .select2-blue .select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da;
    border-radius: 0px;
}

    .select2-blue .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 6px;
    }

.select2-blue .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #80bdff;
}

.select2-blue + .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #3c8dbc
}

.select2-blue + .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #3c8dbc
}

.select2-container--default .select2-blue .select2-dropdown .select2-search__field,
.select2-container--default .select2-blue .select2-search--inline .select2-search__field,
.select2-container--default .select2-blue.select2-dropdown .select2-search__field,
.select2-blue .select2-container--default .select2-dropdown .select2-search__field,
.select2-blue .select2-container--default .select2-search--inline .select2-search__field,
.select2-blue .select2-container--default.select2-dropdown .select2-search__field,
.select2-container--default .select2-blue .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-blue .select2-search--inline .select2-search__field:focus,
.select2-container--default .select2-blue.select2-dropdown .select2-search__field:focus,
.select2-blue .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-blue .select2-container--default .select2-search--inline .select2-search__field:focus,
.select2-blue .select2-container--default.select2-dropdown .select2-search__field:focus {
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.select2-container--default .select2-blue .select2-results__option--highlighted, .select2-blue .select2-container--default .select2-results__option--highlighted {
    background-color: #3c8dbc;
    color: #fff
}

    .select2-container--default .select2-blue .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-blue .select2-results__option--highlighted[aria-selected]:hover, .select2-blue .select2-container--default .select2-results__option--highlighted[aria-selected], .select2-blue .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
        background-color: #3c8dbc;
        color: #fff
    }

.select2-container--default .select2-blue .select2-selection--multiple:focus, .select2-blue .select2-container--default .select2-selection--multiple:focus {
    border-color: #467e9f
}

.select2-container--default .select2-blue .select2-selection--multiple .select2-selection__choice, .select2-blue .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #3c8dbc;
    border-color: #3c8dbc;
    color: #fff
}

.select2-container--default .select2-blue .select2-selection--multiple .select2-selection__choice__remove, .select2-blue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff
}

    .select2-container--default .select2-blue .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-blue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
        color: #ffffff !important;
        background-color: rgba(255, 255, 255, 0.18) !important;
        border-color: rgba(255, 255, 255, 0.28) !important;
    }

.select2-container--default .select2-blue.select2-container--focus .select2-selection--multiple, .select2-blue .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #3c8dbc
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search__field {
    border: 1px solid #ced4da;
    border-radius: .375rem;
    box-shadow: none;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search__field:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.select2-container--bootstrap-5 .select2-selection--single {
    position: relative;
    border: 1px solid #ced4da;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    padding-right: 2.25rem;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear {
    right: 2rem;
    top: 50%;
    width: 1rem;
    height: 1rem;
    padding: 0;
    margin: 0;
    line-height: 1;
    transform: translateY(-50%);
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear:hover {
    background-color: transparent;
}
