/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

:root {
    --primary: #f5af2d;
    --primary-rgb: 245, 175, 45;
    --secondary: #2e4857;
}

.sph-btn-primary {
    background: var(--primary) !important;
    color: #000 !important;
}

.shp-btn-secondary {
    background: #e3e3e3 !important;
    color: #000 !important;
}

.elementor-size-xsm {
    padding: 12px 20px !important;
}

.cursor-pointer {
    cursor: pointer;
}

.sts-input-icon {
    position: absolute;
    top: 45%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    vertical-align: middle;
    font-size: 20px;
}

.sts-form-wrapper input {
    border-radius: 4px;
    padding: 8px 12px;
    background-color: transparent;
    border: 1px solid #dadce0;
    font-weight: 400;
}

.sts-form-wrapper input:focus {
    box-shadow: unset;
    border: 1px solid var(--secondary);
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 12px;
}

.view-open:before {
    content: '';
    width: 100%;
    height: 2px;
    background: #515458;
    position: absolute;
    top: 55%;
    transform: rotate(45deg);
}

.custom-ul {
    list-style-type: none;
    padding: 0 !important;
    margin: 0 !important;
}

.support-sidebar .side-menu li {
    border-bottom: 1px solid rgba(238, 238, 238, 0.8);
}

.support-sidebar .side-menu li .side-menu__item.active,
.support-sidebar .side-menu li .side-menu__item:hover {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
    text-shadow: 0 0 0.1rem rgba(var(--primary-rgb), 0.5);
    border-left: 3px solid var(--primary);
}

.support-sidebar .side-menu li:first-child a {
    border-top: 1px solid rgba(238, 238, 238, 0.8);
}

.support-sidebar .side-menu li a {
    padding: 16px 20px;
    border-left: 3px solid transparent;
    position: relative;
    display: flex;
    text-decoration: none;
    line-height: 1;
    color: var(--secondary);
}

.card {
    margin-bottom: 1.5rem;
}

.support-sidebar .slide-menu {
    padding-left: 10px;
    padding-block: .75rem;
}

.support-sidebar .slide-menu li a {
    padding: 12px 14px 12px 35px;
    border-bottom: 0;
}

.slide-menu.custom-ul .side-menu__item {
    border-left: 0;
}

.support-sidebar .side-menu li .slide-menu li {
    border-bottom: 0;
}

.ticket-title {
    display: block;
    text-decoration: none;
    color: rgb(10 10 10);
}

.muted-text {
    color: #919191;
    font-size: 14px;
}

.ticket_details_info {
    padding: 15px 0;
}

.reply-item {
    padding: 20px;
    border-bottom: 1px solid #e9ebec;
}

.reply-item .item-header {
    padding-bottom: 10px;
}

.reply-item .item-header .author-area {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.avatar-xs {
    height: 2rem;
    width: 2rem;
}

.reply-item .item-header .author-info h6 {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.badge-secondary-light {
    color: rgba(51, 102, 255, 1);
    background-color: #3366ff1a;
}

.badge-primary-light {
    color: rgb(212 31 255);
    background-color: #3366ff1a;
}

.attachment-group {
    margin-top: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.download-attach {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    border: 1px solid #d2d2d2;
    padding: 3px 12px;
    border-radius: 20px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.download-attach:hover {
    background: #654ce6;
    border: 1px solid #654ce6;
    color: #ffffff;
}

#simple-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

#simple-lightbox-overlay.visible {
    opacity: 1;
    visibility: visible;
}

#simple-lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 15px #000;
    border-radius: 8px;
    object-fit: contain;
}

.status-badge {
    padding: 0.25rem 0.45rem 0.25rem 1rem;
    font-weight: 600;
    border-radius: 0.25rem;
    font-size: 13px;
}

.sbadge-open {
    background-color: rgb(115 93 255 / 15%);
    color: rgb(115 93 255);
    line-height: 1;
    position: relative;
}

.sbadge-re-open {
    background-color: rgba(232, 87, 0, 0.15);
    color: rgb(232, 87, 0);
    line-height: 1;
    position: relative;
}

.sbadge-open:before {
    content: '';
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    background: rgb(115 93 255);
    border-radius: 50%;
    top: 40%;
    left: 6px;
}

.sbadge-re-open:before {
    content: '';
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    background: rgb(232, 87, 0);
    border-radius: 50%;
    top: 40%;
    left: 6px;
}

.sbadge-waiting-for-client {
    background-color: rgb(255 154 19 / 15%);
    color: rgb(255 154 19);
    line-height: 1;
    position: relative !important;
}

.sbadge-in-progress {
    background-color: rgba(13, 110, 253, 0.23);
    color: rgb(13, 110, 253);
    line-height: 1;
    position: relative !important;
}

.sbadge-pending-client-approval {
    background-color: rgb(181, 150, 59, 0.23);
    color: rgb(181 150 59);
    line-height: 1;
    position: relative !important;
}

.sbadge-in-progress:before {
    content: '';
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    background: rgb(13, 110, 253);
    border-radius: 50%;
    top: 40%;
    left: 6px;
}

.sbadge-pending-client-approval:before {
    content: '';
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    background: rgb(181 150 59);
    border-radius: 50%;
    top: 40%;
    left: 6px;
}

.sbadge-waiting-for-client:before {
    content: '';
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    background: rgb(194, 111, 3);
    border-radius: 50%;
    top: 40%;
    left: 6px;
}

.sbadge-unknown {
    background-color: rgb(255 90 41 / 15%);
    color: rgb(255 90 41);
    line-height: 1;
    position: relative;
}

.sbadge-unknown:before {
    content: '';
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    background: rgb(255 90 41);
    border-radius: 50%;
    top: 40%;
    left: 6px;
}

.priority-urgent {
    padding: 0.25rem 0.45rem 0.25rem 0.45rem;
    background: rgb(255 90 41);
    color: #fff;
}

.priority-non-urgent {
    padding: 0.25rem 0.45rem 0.25rem 0.45rem;
    background: rgb(12 199 99);
    color: #fff;
}

.sbadge-resolved {
    background-color: rgb(12 199 99 / 15%);
    color: rgb(12 199 99);
    line-height: 1;
    position: relative;
}

.sbadge-resolved:before {
    content: '';
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    background: rgb(12 199 99);
    border-radius: 50%;
    top: 40%;
    left: 6px;
}


.support-sidebar .side-menu__item.active .side-menu__icon,
.support-sidebar .side-menu__item:hover .side-menu__icon {
    color: var(--primary);
    fill: var(--primary);
}

.support-sidebar .side-menu__icon {
    font-size: 18px;
    width: 18px;
    height: 18px;
    margin-right: .6rem;
    color: var(--secondary);
    fill: var(--secondary);
    line-height: 1.2;
}

/* Dashboard sidebar */

.dashboard-wrapper {
    padding-left: 0;
    transition: all 0.5s ease;
    position: relative;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.5s ease;
    box-shadow: 2px 0px 4px rgb(115 93 255 / 3%);
    background-color: #fff;
}

.dashboard-wrapper.toggled #sidebar-wrapper {
    width: 250px;
}

.sidebar-brand {
    position: absolute;
    top: 0;
    width: 250px;
    text-align: center;
    padding: 20px 0;
}

.sidebar-brand h2 {
    margin: 0;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
}

.sidebar-nav {
    position: absolute;
    top: 90px;
    width: 250px;
    margin: 0;
    padding: 0 1rem;
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav>li a {
    padding: 0.65rem 0.75rem;
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--menu-prime-color);
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.sidebar-nav>li>a svg {
    width: 18px;
    height: 18px;
    color: #61748f;
    fill: #61748f;
    margin-right: 0.75rem;
}

.sidebar-nav>li>a:hover,
.sidebar-nav>li.active>a {
    background-color: var(--primary);
    color: #fff;
}

.sidebar-nav>li>a:hover svg,
.sidebar-nav>li.active>a svg {
    color: #fff;
    fill: #fff;
}


.sidebar-nav>li>a i.fa {
    font-size: 24px;
    width: 60px;
}

#navbar-wrapper {
    width: 100%;
    position: absolute;
    z-index: 2;
}

.dashboard-wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -250px;
}

#navbar-wrapper .navbar {
    border-width: 0 0 0 0;
    background-color: #fff;
    font-size: 24px;
    margin-bottom: 0;
    border-radius: 0;
}

#navbar-wrapper .navbar a {
    color: #757575;
}

#navbar-wrapper .navbar a:hover {
    color: #F8BE12;
}

#content-wrapper {
    width: 100%;
    position: absolute;
    padding: 15px;
    top: 100px;
}

.dashboard-wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -250px;
}

@media (min-width: 992px) {
    .dashboard-wrapper {
        padding-left: 250px;
    }

    .dashboard-wrapper.toggled {
        padding-left: 60px;
    }

    #sidebar-wrapper {
        width: 250px;
    }

    .dashboard-wrapper.toggled #sidebar-wrapper {
        width: 60px;
    }

    .dashboard-wrapper.toggled #navbar-wrapper {
        position: absolute;
        margin-right: -190px;
    }

    .dashboard-wrapper.toggled #content-wrapper {
        position: absolute;
        margin-right: -190px;
    }

    #navbar-wrapper {
        position: relative;
    }

    .dashboard-wrapper.toggled {
        padding-left: 60px;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    .dashboard-wrapper.toggled #navbar-wrapper,
    .dashboard-wrapper.toggled #content-wrapper {
        position: relative;
        margin-right: 60px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .dashboard-wrapper {
        padding-left: 60px;
    }

    #sidebar-wrapper {
        width: 60px;
    }

    .dashboard-wrapper.toggled #navbar-wrapper {
        position: absolute;
        margin-right: -250px;
    }

    .dashboard-wrapper.toggled #content-wrapper {
        position: absolute;
        margin-right: -250px;
    }

    #navbar-wrapper {
        position: relative;
    }

    .dashboard-wrapper.toggled {
        padding-left: 250px;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    .dashboard-wrapper.toggled #navbar-wrapper,
    .dashboard-wrapper.toggled #content-wrapper {
        position: relative;
        margin-right: 250px;
    }
}

@media (max-width: 767px) {
    .dashboard-wrapper {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 0;
    }

    .dashboard-wrapper.toggled #sidebar-wrapper {
        width: 250px;
    }

    .dashboard-wrapper.toggled #navbar-wrapper {
        position: absolute;
        margin-right: -250px;
    }

    .dashboard-wrapper.toggled #content-wrapper {
        position: absolute;
        margin-right: -250px;
    }

    #navbar-wrapper {
        position: relative;
    }

    .dashboard-wrapper.toggled {
        padding-left: 250px;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    .dashboard-wrapper.toggled #navbar-wrapper,
    .dashboard-wrapper.toggled #content-wrapper {
        position: relative;
        margin-right: 250px;
    }
}

.card.custom-card {
    border-radius: 0.25rem;
    background-color: #FFF;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border: 0px solid #F3F2F9;
    position: relative;
    margin-block-end: 1.5rem;
    width: 100%;
}

.card.custom-card .card-header {
    padding: 1rem;
    background-color: transparent !important;
    border-block-end: 1px solid var(--default-border);
    display: flex;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.shp_table.table th,
.shp_table.table td {
    padding: 0.75rem 1.15rem;
    vertical-align: middle;
    line-height: 1.462;
    font-size: 0.85rem;
    font-weight: 500;
}

.dashboard-ticket-pagination .pagination .page-numbers {
    border: 0 !important;
    font-size: 0.8125rem;
    border-radius: 0.25rem;
    margin-inline-end: 5px;
    list-style: none;
    padding: 0.375rem 0.75rem;
    text-decoration: none;
    background-color: rgb(247 248 250);
    color: #000;
}

.dashboard-ticket-pagination .pagination .page-numbers.current:not(.dots):not(.next):not(.prev) {
    background-color: var(--primary);
}

.dashboard-ticket-pagination .pagination .page-numbers:hover {
    background-color: rgb(247 248 250);
}

.card.custom-card .card-footer {
    background-color: transparent !important;
    border-block-start: 1px solid #f3f2f9;
    padding: 1rem;
    font-size: 0.85rem;
}

.dropdown-menu {
    border-color: #F3F2F9;
    box-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    color: #222F36;
    background-color: #ffffff;
    padding: 0;
    z-index: 10;
    border-radius: 0.25rem;
    overflow: hidden;
    animation-duration: 0.2s;
    -webkit-animation-duration: 0.2s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: slideIn;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(6rem);
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
        transform: translateY(6rem);
    }
}

.form-control-sm {
    font-size: 0.8rem;
    padding: 0.35rem 0.8rem !important;
    line-height: inherit;
    border-radius: 0.25rem !important;
}

.form-control {
    border-color: #E2E6F1;
    color: #222F36;
    background-color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.7;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
}

.table {
    --bs-table-bg: #FFF !important;
    color: #222F36;
    border-color: #F3F2F9 !important;
    margin-block-end: 0;
}

.dropdown a svg {
    fill: #fff;

}

.btn-action {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.8rem;
    padding: 0.1875rem;
    border-radius: 0.25rem;
    transition: .3s all ease;
}

.btn-action {
    background-color: rgba(0, 0, 0, 0.15);
    color: rgb(0, 0, 0);
}

.btn-action:hover {
    background-color: rgba(0, 0, 0);
    color: #fff;
}

.btn-action-delete {
    background-color: rgb(255 90 41 / 15%);
    color: rgb(255 90 41);
}

.btn-action-delete:hover {
    background-color: rgb(255 90 41);
    color: #fff;
}

.btn-action-approve {
    background: #00cd002e;
}

.btn-action-approve:hover {
    background: #00cd009c;
}

.sidebar-brand img {
    /* filter: invert(1); */
    width: 170px;
}

.single-project-updates {
    padding: 10px;
    border: 1px solid #eeeeee;
}

.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #000 !important;
    transition: .3s all ease;
}

.btn-primary:hover {
    background-color: var(--primary);
    color: #000;
    opacity: .8;
    border-color: var(--primary);
}

.dashboard-icon-rounded {
    height: 55px;
    width: 55px;
    line-height: 55px;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    color: #fff;
}

.bg-primary-transparent {
    background: #3366ff1a;
    color: #3366ff;
}

.list-group li.list-group-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.ticket-name {
    color: #000;
    margin-bottom: 5px;
    display: block;
}

.alert {
    border-radius: 4px !important;
}

.drop-zone.dropzone.dz-clickable {
    background-image: url(fancy_upload.png);
}

.drop-zone.dropzone.dz-clickable.dz-started {
    background-image: none !important;
}

.dropzone {
    border: 2px dashed #e9ebfa !important;
    border-radius: 5px;
    padding: 0;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.dropzone .dz-message .dz-button {
    font-size: 0 !important;
}

.section-gap-top {
    padding-top: 80px;
}

.section-gap-bottom {
    padding-bottom: 80px;

}

.select2-dropdown {
    z-index: 9999;
}

@media (max-width: 768px) {
    .section-gap-top {
        padding-top: 53px;
    }

    .section-gap-bottom {
        padding-bottom: 53px;
    }
}

.responses .success {
    display: block;
    margin-top: 14px !important;
    text-align: center;
}

a.btn-action.btn-action-view {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.select2-container--default .select2-selection--single {
    border-color: #dddddd !important;
    height: 34px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 34px !important;
}

.assigned_to_me {
    background-color: #dddddd !important;
    border-color: #dddddd !important;
    padding-left: 30px !important;
    margin-right: 0 !important;
}

.assigned_to_me label {
    cursor: pointer !important;
}

.assigned_to_me:has(input[type="checkbox"]:checked) {
    background-color: var(--primary) !important;
}

.assigned_to_me input[type="checkbox"]:checked {
    background-color: #212529 !important;
}


.form-check-input:focus {
    box-shadow: unset !important;
}

#password.form-control {
    padding-right: 4.25rem
}

#ph_overview {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

#ph_overview li.pho_item {
    padding: 10px 15px;
    background: #f9f9f9;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

#ph_overview li.pho_item span.remove-project {
    cursor: pointer;
}

span.remove-project .fa-trash {
    color: red;
}

.swal2-input-hint {
    padding: .375em .625em;
    text-align: center;
}