/*
|--------------------------------------------------------------------------
| Contents
|--------------------------------------------------------------------------
|
| 1.Root Variables
| 2.Material Design Icons
| 3.Helpers
| 4.Layouts
| 5.Navbar
| 6.Sidebar
| 7.Progressbar
| 8.Default bootstrap classes
|
*/

/* 1.Root Variables */
:root {
    --body-bg: #070d19;
    --main-color: #0e182e;
    --light-black: #343a4073;
    --medium-white: #e2e3ea;
    --medium-grey: #f9f9f9;
    --medium-red: #f63334;
    --medium-yellow: #e1b751;
    --medium-green: #2bb673;
    --light-grey: #5c6070;
    --primary: #007bff;
    --critical: #f34f65;
    --orange: #ff8c1a;
    --blue: #5b69bc;
    --low: #48d101;
    --text-color: #fff;
    --purple: #2abbac;
    --high: #d37415;
    --status-closed: #26ae43;
    --status-open: #ff6d03;
    --status-in-progress: #2781fd;
    --light-yellow: #ffc200d4;
    --border: #cacbd8;
    --border-light: #5d5d5d;
    --bg-search: #262f43;
    --white: #fff;
    --font-family: "Fira Sans", sans-serif;
    --light: 300;
    --regular: 400;
    --bold: 600;
}

/* 2.Material Design Icons
  ========================================================================== */
@font-face {
    font-family: "Material Icons";
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/md-icons/MaterialIcons-Regular.eot?e79bfd88537def476913f3ed52f4f4b3);
    /* For IE6-8 */
    src: local("Material Icons"), local("MaterialIcons-Regular"),
        url(/fonts/md-icons/MaterialIcons-Regular.woff2?570eb83859dc23dd0eec423a49e147fe)
            format("woff2"),
        url(/fonts/md-icons/MaterialIcons-Regular.woff?012cf6a10129e2275d79d6adac7f3b02)
            format("woff"),
        url(/fonts/md-icons/MaterialIcons-Regular.ttf?a37b0c01c0baf1888ca812cc0508f6e2)
            format("truetype");
}

.material-icons {
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga";
    vertical-align: middle;
}

/* 3.Helpers
  ========================================================================== */

body {
    background: var(--body-bg);
    font-family: var(--font-family);
    font-weight: var(--regular);
    font-style: normal;
    font-size: 14px;
}

main {
    padding: 94px 32px 24px 94px;
    width: 100%;
}

.required:after {
    content: " *";
    color: #f63334;
}

a {
    color: var(--medium-grey);
}

a:hover {
    text-decoration: none;
    color: inherit;
}

.badge {
    padding: 0.48em 0.58em;
    margin-top: 5px;
    font-weight: 400;
}

.badge-yes {
    width: 50px;
    color: #05c95b;
    border: 1px solid #05c95b;
}

.badge-no {
    width: 50px;
    color: #ff3366;
    border: 1px solid #ff3366;
}

.badge-na {
    width: 50px;
    color: #c3a9ff;
    border: 1px solid #c3a9ff;
}

.badge-answer {
    width: 50px;
    color: #0fefee;
    border: 1px solid #0fefee;
}

.disabled-btn {
    background-color: #868584;
    border-color: #868584;
}

.btn-primary {
    background-color: #727cf5;
    border: none;
}

.btn-secondary {
    background-color: #7987a1;
    border: none;
}

.btn-danger {
    background-color: #ff3366;
    border: none;
}

.btn-success {
    background-color: #05c95b;
    border: none;
}

.btn-info {
    color: var(--white);
    background-color: #36a3e9;
    border: none;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active {
    color: var(--white);
    background-color: #36a3e9;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #5a66f8;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #607190;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-dange:active {
    background-color: #f22458;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: #04ad4e;
}

.hv-75 {
    height: 75vh;
}

.w-450 {
    max-width: 450px;
    flex: 100%;
}

.w-5 {
    width: 5rem;
}

.w-6 {
    width: 6rem;
}

.w-7 {
    width: 7rem;
}

.w-9 {
    width: 9rem;
}

.text-width {
    width: 250px;
}

/* .header-bg {
  background-color: #37404a;
} */

.tooltip.in {
    opacity: 0.9;
}

.line-height-14 {
    line-height: 14px;
}

.font-10 {
    font-size: 10px;
}

.font-11 {
    font-size: 11px;
}

.font-12 {
    font-size: 12px;
}

.font-13 {
    font-size: 13px;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.card-design {
    padding: 14px;
}

.table-text-small {
    font-size: 12px;
}

.text-logut {
    color: var(--medium-grey) !important;
}

.custom-height {
    height: 36px;
}

.box-sm-height {
    height: 192px;
}

.cursor-pointer {
    cursor: pointer;
}

.custom-bg-dark {
    background-color: var(--main-color);
}

.text-color {
    color: var(--white);
}

.custom-border-color {
    border-color: #1b2849 !important;
}

.req-select {
    width: 110px;
    z-index: 0;
    /* background-color: #f9f9f9;
  border: 1px solid; */
}

.vendor-footer {
    border-top: 0.1px solid #1b2849;
    padding: 6px 9px 6px 1px;
    background: var(--main-color);
    color: white;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 999;
}

input[type="radio"] {
    opacity: 0;
    position: absolute;
    margin-left: -3px;
}

input[type="radio"] + span {
    border: 1px solid #a5a5a5;
}

input[type="radio"]:checked + span {
    background: #00818e;
    border-color: #00818e;
    color: white;
}

input.unchecked + span {
    background: #fff;
    border-color: #a5a5a5;
    color: #000;
}

button[disabled="disabled"] {
    cursor: no-drop;
}

.radius-25 {
    border-radius: 25px;
}

main .table.threat-td-valign td {
    vertical-align: top;
}

.close.showimage-close-btn {
    color: #fff;
    font-size: 22px;
    padding: 0;
    opacity: 1;
}

hr {
    border-color: var(--border);
}

.left-border {
    border-left: 1px solid #e2e3ea;
}

.bg-vendor {
    background-color: #37404a;
    padding-top: 10px;
    padding-bottom: 20px;
}

.sq1shield-box {
    min-height: 450px;
    height: 450px;
}

.sq1shield-box .custom-position {
    position: absolute;
}

.sq1shield-box .pagination {
    float: right;
}

.custom-input-search {
    display: flex;
}

.sq1shield-box .placeholder {
    color: var(--light-grey) !important;
}

.notifi-count {
    position: absolute;
    top: -8px !important;
    right: 2px !important;
    background: #ff5e00 !important;
    color: var(--main-color);
    font-size: 0.8em;
    color: white;
    border-radius: 50%;
    padding: 2px 4px;
    font-weight: 400 !important;
}

@media (min-width: 320px) and (max-width: 1131px) {
    .sq1shield-box .pagination {
        position: inherit;
    }

    .sq1shield-box {
        min-height: auto;
        height: auto;
    }

    .sq1shield-box .custom-position {
        position: inherit;
    }
}

@media (min-width: 320px) and (max-width: 1131px) {
    .sq1shield-box .pagination {
        position: inherit;
    }
}

@media (max-width: 768px) {
    .sq1shield-box .pagination .prev,
    .next {
        display: none;
    }
}

/* =================== color name ===================== */
.outline-critical {
    color: var(--critical);
    border: 1px solid var(--critical);
}

.outline-high {
    color: var(--high);
    border: 1px solid var(--high);
}

.outline-medium {
    color: var(--medium-yellow);
    border: 1px solid var(--medium-yellow);
}

.outline-low {
    color: var(--low);
    border: 1px solid var(--low);
}

.outline-warning {
    color: #ffc107;
    border: 1px solid #ffc107;
}

.critical {
    color: var(--critical);
    border: 1px solid var(--critical);
}

.high {
    color: var(--high);
    border: 1px solid var(--high);
}

.medium {
    color: var(--medium-yellow);
    border: 1px solid var(--medium-yellow);
}

.low {
    color: var(--low);
    border: 1px solid var(--low);
}

.status-closed {
    color: var(--status-closed);
    border: 1px solid var(--status-closed);
}

.status-risk_accepted {
    color: var(--status-closed);
}

.status-open {
    color: var(--status-open);
}

.status-progress {
    background-color: #36a3e9;
}

.status-new {
    color: #f65456;
}

.open {
    /* border: 1px solid #08d8c5;
  color: #08d8c5; */
    border: 1px solid #58d7ff;
    color: #58d7ff;
}

.outline-progress {
    color: #36a3e9;
    border: 1px solid #36a3e9;
}

.assigned {
    border: 1px solid #00a2e8;
    color: #00a2e8;
}

.accepted {
    border: 1px solid #19a2bb;
    color: #19a2bb;
}

.on_hold {
    border: 1px solid #cc00aa;
    color: #cc00aa;
}

.completed {
    border: 1px solid #02980c;
    color: #02980c;
}

.closed {
    /* border: 1px solid #ae0068;
  color: #ae0068; */
    color: var(--status-closed);
    border: 1px solid var(--status-closed);
}

.rejected {
    border: 1px solid #757575;
    color: #757575;
}

.risk_accepted {
    border: 1px solid #ff6501;
    color: #ff6501;
}

.repeated {
    border: 1px solid #0239a6;
    color: #0239a6;
}

.false_positive {
    border: 1px solid #9c27b0;
    color: #9c27b0;
}

.pending-approval {
    border: 1px solid var(--medium-yellow);
    color: var(--medium-yellow);
}

.policy-active {
    border: 1px solid var(--medium-green);
    color: var(--medium-green);
}

.pending {
    border: 1px solid var(--medium-yellow);
    color: var(--medium-yellow);
}

.approved {
    border: 1px solid var(--medium-green);
    color: var(--medium-green);
}

.outline-active {
    border: 1px solid var(--medium-green);
    color: var(--medium-green);
}

.outline-inactive {
    border: 1px solid var(--medium-red);
    color: var(--medium-red);
}

.retired {
    border: 1px solid #03a9f4;
    color: #03a9f4;
}

.expired {
    border: 1px solid var(--medium-red);
    color: var(--medium-red);
}

.review {
    border: 1px solid var(--orange);
    color: var(--orange);
}

.text-green {
    color: var(--medium-green);
}

.outline-info {
    border: 1px solid var(--info);
}

.outline-green {
    border: 1px solid var(--medium-green);
}

.outline-open {
    border: 1px solid var(--primary);
}

.bg-red {
    background-color: var(--medium-red);
}

.bg-orange {
    background-color: var(--orange);
}

.bg-blue {
    background-color: var(--blue);
}

.bg-purple {
    background-color: var(--purple);
}

.bg-grey {
    background-color: var(--light-grey);
}

.bg-green {
    background-color: var(--medium-green);
}

.bg-light-gray {
    background-color: #e2e3ea;
}

.bg-border-radius {
    border-radius: 3px;
}

.bg-search {
    background-color: var(--bg-search) !important;
    color: var(--white);
    border: none !important;
}

.bg-critical {
    background-color: var(--medium-red);
}

.bg-high {
    background-color: var(--high);
}

.bg-medium {
    background-color: var(--light-yellow);
}

.bg-low {
    background-color: var(--low);
}

.tag {
    border: 1px solid #36a2eb !important;
    color: #36a2eb !important;
}

.tag-asset {
    border: 1px solid var(--light-yellow) !important;
    color: var(--light-yellow) !important;
}

.tag-asset-all {
    border: 1px solid var(--medium-green) !important;
    color: var(--medium-green) !important;
}

.i-primary {
    color: #36a2eb !important;
}

.i-secondary {
    color: var(--secondary) !important;
}

.i-danger {
    color: #f34f65 !important;
}

.i-success {
    color: #4bc0c0 !important;
}

.custom-btn-primary {
    background-color: #36a2eb;
}

.custom-btn-secondary {
    background-color: var(--secondary);
}

.custom-btn-danger {
    background-color: #f34f65;
}

.custom-btn-success {
    background-color: #4bc0c0;
}

.import-btn {
    color: var(--white);
    background-color: #36a3e9;
}

.import-btn:hover {
    color: var(--white);
    background-color: #36a3e9;
}

.comply-status {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    position: relative;
    margin: auto;
}

.comply-status i {
    top: 15px;
    margin: auto !important;
    text-align: center !important;
    position: inherit;
    font-size: 20px !important;
    color: var(--white) !important;
}

.circle-count {
    width: 130px;
    height: 130px;
    background: #343a40;
    border-radius: 100%;
    margin: auto;
    border: 8px solid #1b8590;
}

.count {
    text-align: center;
    position: relative;
    top: 30%;
    color: #eeeff5;
    font-size: 35px;
    font-weight: 600;
}

/* ============== Helper class responsive codes ============*/
@media (min-width: 320px) {
    .input-width {
        width: 100% !important;
    }

    .custom-height {
        height: auto;
    }

    main {
        padding: 94px 20px 24px 77px;
    }

    .text-width {
        width: 200px;
        margin-top: 5px;
    }
}

@media (min-width: 481px) {
    main {
        padding: 94px 32px 24px 94px;
        width: 100%;
    }

    .text-width {
        width: 250px;
    }
}

@media (min-width: 768px) {
    .custom-height {
        height: 45px;
    }

    main {
        padding: 94px 32px 24px 77px;
    }
}

@media (min-width: 769px) {
    .custom-height {
        height: 45px;
    }
}

@media (min-width: 991px) {
    .input-width {
        width: 200px !important;
    }

    main {
        padding: 94px 32px 24px 94px;
    }
}

@media (min-width: 1080px) {
    .input-width {
        width: 300px !important;
    }
}

@media (min-width: 1244px) {
    .custom-height {
        height: 30px;
    }
}

@media (min-width: 1334px) {
    .custom-height {
        height: 36px;
    }
}

/* 4.Layout Section
============================================================================= */
main .card {
    background: var(--main-color);
    color: var(--medium-grey);
}

main .custom-box h2 {
    color: var(--medium-grey);
    font-size: 25px;
}

main .custom-box a:hover {
    color: var(--medium-white);
}

main .custom-box .card img {
    width: 40px;
}

main .card .card-body .row {
    align-items: center;
}

main .custom-box .card h5,
main .custom-box .card h6 {
    text-align: right;
    display: grid;
    align-items: center;
}

main .card h5 {
    font-size: 15px;
}

main .custom-box .card h6 {
    font-size: 35px;
    font-weight: var(--bold);
}

main .chart-box .card {
    height: 430px;
}

main .chart-box .card .meter-tab-menu a {
    padding: 11px;
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
}

main .chart-box .card .topevents-tab-menu a {
    padding: 11px;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
}

.no-data {
    font-weight: 600;
    font-size: 13px;
}

main .card .loading-process img {
    width: 85px;
    opacity: 0.7;
    position: absolute;
    left: 43%;
    top: 35%;
}

main .filter-data-show {
    padding: 15px 0;
    color: var(--white);
}

main .filter-data-show p {
    border: 1px solid var(--border-light);
    padding: 3px 15px;
    margin: 0 10px 0 0;
    border-radius: 15px;
}

main .filter-data-show p.text-white {
    cursor: pointer;
}

main .groupby-filter span,
main .groupby-filter div {
    color: var(--medium-grey);
    background: var(--main-color);
}

main #submit_filter label {
    font-size: 14px;
}

main .table,
main .table td button {
    color: var(--medium-grey);
}

main .custom-table-title {
    color: var(--medium-grey);
    border-bottom: 1px solid var(--border);
    align-items: center;
}

main .custom-table-title i {
    color: var(--medium-grey);
}

main table i {
    color: var(--medium-grey-lighten);
}

main .table-overflow-control .table td,
main .table-overflow-control .table th {
    border-bottom: 0;
    vertical-align: middle;
}

main .table td,
.table th {
    border: 1px solid transparent;
    border-bottom: 1px solid #bebebe42;
    padding: 10px 7px;
}

main .table thead th {
    border: 1px solid transparent;
    border-bottom: 1px solid #bebebe42;
    vertical-align: middle;
}

main .table.Vmanagment-table td,
.table.Vmanagment-table th {
    border: 1px solid #bebebe42;
    padding: 10px 7px;
}

main .table.Vmanagment-table thead th {
    border: 1px solid #bebebe42;
    vertical-align: middle;
}

main .table thead th a:hover,
main .table thead th a:focus,
main .table thead th a:active {
    color: var(--light-grey);
}

main .table td {
    vertical-align: middle;
}

.sidebar-height > table > tr > td {
    word-break: break-all;
}

main .custom-table button {
    outline: none;
}

main .custom-table-title button.close span {
    color: var(--white);
}

main .circle-count + div h6 {
    height: 31px;
}

main .sq1core-nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.progress_active {
    background-color: var(--medium-red);
    color: var(--medium-white) !important;
}

main .sq1core-nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: #f34f65;
    color: var(--medium-white) !important;
}

main .sq1core-nav-pills .nav-link {
    line-height: 14px;
    background-color: var(--main-color);
}

main .sq1core-nav-pills .nav-link:hover {
    color: var(--medium-red);
}

main .show-height::-webkit-scrollbar {
    width: 8px;
    background-color: #f5f5f5;
}

main .show-height {
    height: 522px;
    overflow: auto;
    overflow-x: hidden;
}

main .content-height::-webkit-scrollbar,
main .network-height::-webkit-scrollbar,
.fs-options::-webkit-scrollbar {
    width: 8px;
    background-color: #f5f5f5;
}

main .content-height::-webkit-scrollbar-track,
main .show-height::-webkit-scrollbar-track,
main .network-height::-webkit-scrollbar-track,
.fs-options::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #e2e3ea;
}

main .content-height,
main .network-height {
    overflow: auto;
    overflow-x: hidden;
    align-content: center;
    display: block;
}

span.doted {
    display: contents;
}

main .incident-btn {
    border-radius: 4px;
    border: 0;
    font-size: 12px;
    background: var(--medium-red);
    color: var(--white);
}

main .incident-btn.btn-grey:hover {
    color: var(--light-grey);
}

main .incident-btn.btn-grey {
    color: var(--main-color);
    background: var(--white);
}

main .total-event h5 {
    color: #31bf1f;
    font-size: 13px;
    margin-top: 7px;
}

main .total-event h2 {
    color: #fff;
}

main .total-event .card-body div:nth-child(1) {
    border-bottom: 1px solid var(--border-light);
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.42);
}

.nav-pills .nav-item {
    padding-right: 6px;
}

.fileUpload,
.docUpload {
    position: relative;
    overflow: hidden;
}

.docUpload input.upload,
.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    opacity: 0;
    cursor: pointer;
}

.invalid-feedback strong {
    font-weight: 500;
}

.sq1shield-truncate {
    word-wrap: normal;
    margin-bottom: 0;
}

.morecontent span {
    display: none;
}

.gauge-topheader a {
    padding: 8px 0;
    flex-grow: 1;
    flex-basis: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #595f7440;
    border-bottom: 5px solid #16233e;
    border-top: 5px solid #16233e;
    background: #16233e;
}

.gauge-topheader a:hover {
    border-bottom: 5px solid #f34f65;
}

.gauge-topheader .active {
    border-bottom: 5px solid #f34f65;
}

.gauge-meter {
    height: 0;
}

.topevents-tab-menu a {
    padding: 11px;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
}

.name-holder .icon {
    float: left;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #006432;
    border-radius: 20px;
    color: #fff;
    margin-right: 10px;
}

.activity {
    font-size: 13px;
    color: #9c9c9c;
    font-weight: var(--regular);
    padding-top: 10px;
}

#resend_timer {
    line-height: 3;
}

.colapse-accordian .badge {
    width: 90px;
}

.status-text-height {
    height: 50px;
    display: flex;
    justify-content: center;
}

.compli-badge-height {
    margin-bottom: 15px !important;
}

/*------------ layout media query codes start -------------*/
@media (min-width: 320px) {
    main .custom-box .card h5,
    main .custom-box .card h6 {
        text-align: center;
    }

    main .custom-box .card img {
        display: block;
        margin: 0 auto;
        margin-bottom: 15px;
    }

    main .custom-box .card i {
        text-align: center;
        display: block;
        margin-bottom: 10px;
    }

    main .sq1core-nav-pills .nav-item {
        padding-bottom: 6px;
    }

    #resend_timer {
        display: block;
    }

    #resend_timer {
        line-height: 2;
    }

    main .table-alignment {
        table-layout: inherit;
    }

    main .table td {
        word-break: inherit;
    }

    main .content-height {
        height: 190px;
    }

    .threat-td-valign .sq1shield-truncate {
        width: 175px;
    }

    main .total-event .card-body span {
        display: block;
        text-align: left;
    }

    main .total-event .card-body span.text-info {
        display: contents;
    }

    main .total-event .date-generate {
        display: grid;
        justify-content: left;
    }

    main .total-event div.col {
        flex-basis: 1;
        flex: 100%;
    }
}

@media (min-width: 481px) {
    main .chart-box .card {
        /* height: auto; */
    }
}

@media (min-width: 575px) {
    #resend_timer {
        display: inline;
    }
}

@media (min-width: 768px) {
    main .custom-box .card img {
        display: block;
        margin: 0 auto;
    }

    main .custom-box .card-body {
        padding: 0.45rem;
    }

    main .chart-box .card {
        height: 430px;
    }

    main .table-alignment {
        table-layout: fixed;
    }
}

@media (min-width: 886px) {
    main .custom-box .box-sm-height h5 {
        height: 40px;
    }
}

@media (min-width: 935px) {
    main .sq1core-nav-pills .nav-item {
        padding-bottom: 0px;
    }
}

@media (min-width: 992px) {
    main .custom-box .card h5,
    main .custom-box .card h6 {
        text-align: right;
    }

    .status-text-height {
        height: 90px;
    }

    .compli-badge-height {
        height: 62px;
    }

    main .total-event div.col {
        flex-basis: 0;
    }
}

@media (min-width: 1025px) {
    main .custom-box .card-body {
        padding: 14px;
    }
}

@media (min-width: 1085px) {
    main .custom-box .card-body {
        padding: 1.25rem;
    }

    .compli-badge-height {
        height: auto;
    }

    .status-text-height {
        height: 75px;
    }
}

@media (min-width: 1117px) {
    main .total-event .date-generate {
        display: flex;
    }
}

@media (min-width: 1199px) {
    main .custom-box .box-sm-height h5 {
        height: auto;
    }

    main .content-height {
        height: 170px;
    }
}

/* ======================  Layout Media query codes end ================= */
/* 5.Navbar
============================================================================ */
header .sq1core-navbar {
    background-color: var(--main-color) !important;
    border-bottom: 1px #1b2849 solid;
    height: 61px;
}

header .sq1core-navbar .navbar-brand {
    padding-right: 18px;
}

header .sq1core-navbar .logoutMenu {
    background: var(--main-color);
    color: var(--medium-grey);
    width: 200px;
    top: 44px;
    left: -131px;
}

header .sq1core-navbar .logoutMenu .dropdown-item:focus,
.dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: #f34f65;
}

header .dropdown-item {
    color: var(--medium-grey);
}

header .sq1core-navbar .navbar-nav .nav-link {
    color: var(--medium-grey);
}

header .sq1core-navbar .navbar-nav .nav-item {
    padding-top: 0px;
    padding-right: 24px;
    line-height: 18px;
    color: var(--medium-grey-lighten);
    position: relative;
}

header .sq1core-navbar .navbar-nav .nav-item span {
    position: absolute;
    top: -12px;
    right: 14px;
    background: var(--medium-red);
    color: var(--main-color);
    font-size: 0.8em;
    color: white;
    border-radius: 50%;
    /* line-height: 10px; */
    font-weight: var(--bold);
}

header .sq1core-navbar .navbar-nav .nav-item .nav-link i {
    font-size: 22px;
}

header .sq1core-navbar .navbar-nav .active > .nav-link {
    color: var(--medium-grey) !important;
    background: #f34f65;
    border-radius: 4px;
}

header .navbar-light .navbar-nav .nav-link:focus {
    color: var(--medium-grey) !important;
}

header .sq1core-navbar .navbar-nav .nav-item:hover .nav-link {
    color: var(--medium-red);
}

header .sq1core-navbar .navbar-nav .nav-link.disabled {
    cursor: context-menu;
}

header .sq1core-navbar .client_logo {
    width: 100px;
}

/*================== Navbar media query code start ======================== */
@media (min-width: 200px) {
    header .sq1core-navbar .navbar-collapse {
        margin-top: 5px;
        margin-left: 55px;
    }

    header .sq1core-navbar .navbar-brand {
        padding-right: 4px;
    }

    header .sq1core-navbar ul {
        background: var(--main-color);
        text-align: right;
    }

    header .sq1core-navbar .navbar-nav .nav-item {
        padding-right: 0;
    }

    header .sq1core-navbar .navbar-nav .nav-item a {
        padding-left: 5px;
        padding-right: 5px;
    }

    header .sq1core-navbar .logoutMenu {
        width: 100%;
    }
}

@media (min-width: 481px) {
    header .sq1core-navbar .logoutMenu {
        margin: 0.7em 0 0;
        width: 176px;
        float: right;
    }

    header .sq1core-navbar .client_logo {
        width: 100px;
    }
}

@media (min-width: 991px) {
    header .sq1core-navbar .navbar-collapse {
        margin-top: 0;
        margin-left: 0;
    }

    header .sq1core-navbar ul {
        background: transparent;
        text-align: inherit;
    }

    header .sq1core-navbar .navbar-nav .nav-item {
        padding-right: 3px;
    }

    header .sq1core-navbar .navbar-nav .nav-item a {
        padding: 6px 6px;
        font-size: 13px;
    }

    header .sq1core-navbar .logoutMenu {
        width: 200px;
        top: 44px;
        left: -131px;
    }

    header .sq1core-navbar .navbar-brand {
        padding-right: 5px;
        margin-right: 6px;
    }

    header .sq1core-navbar .client_logo {
        width: 90px;
    }
}

@media (min-width: 1110px) {
    header .sq1core-navbar .navbar-brand {
        padding-right: 18px;
    }

    header .sq1core-navbar .navbar-nav .nav-item a {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 14px;
    }
}

@media (min-width: 1162px) {
    header .sq1core-navbar .navbar-nav .nav-item {
        padding-right: 10px;
    }
}

@media (min-width: 1225px) {
    header .sq1core-navbar .navbar-nav .nav-item a {
        padding-left: 7px;
        padding-right: 7px;
    }
}

@media (min-width: 1290px) {
    header .sq1core-navbar .client_logo {
        width: 119px;
    }
}

/* ====================== Navbar media query code end =============*/
/* 6 .Sidebar
  ========================================================================== */
aside {
    bottom: 0;
    overflow: hidden;
    position: fixed;
    top: 0px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 58px;
    background-color: var(--main-color);
    border-right: 1px #1b2849 solid;
    z-index: 1030;
}

aside ul {
    padding: 0;
    margin: 0;
}

aside ul li {
    display: inline-block;
    width: 100%;
    margin: 10px 0px 10px 10px;
}

aside ul li.logo img {
    padding: 10px;
}

aside ul li.logo,
aside ul li:hover .logo {
    border-bottom: 1px #1b2849 solid;
    padding: 0;
    margin: 0 !important;
    line-height: 0px;
}

aside ul li a {
    text-decoration: none;
    text-align: center;
    padding: 7px;
    line-height: 32px;
    border-radius: 12px;
    color: #b4b7c5;
}

aside ul li a i {
    vertical-align: middle;
    color: #99a3b0;
    font-size: 24px !important;
}

aside ul li.active i,
aside ul li:hover i {
    color: #f34f65;
}

aside ul li.active a,
aside ul li:hover a {
    text-decoration: none;
    text-align: center;
    color: #f34f65;
    padding: 7px 8px 12px 8px;
    line-height: 32px;
    border-radius: 9px;
}

aside ul li span {
    font-family: var(--font-family);
    font-weight: var(--regular);
    position: fixed;
    right: 0px;
    left: 57px;
    z-index: 1036;
    background: var(--main-color);
    color: var(--medium-grey);
    padding: 7px 5px 7px 10px;
    width: 120px;
    display: none;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 12px 8px 20px -10px rgba(0, 0, 0, 0.4);
}

aside ul li:hover span {
    display: inline;
}

.tooltip > .tooltip-inner {
    background-color: #363c50;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #363c50 !important;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: #363c50 !important;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: #363c50 !important;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: #363c50 !important;
}

.popover {
    background: #363c50;
}

.popover-header {
    background-color: #363c50;
    color: var(--text-color);
    border-bottom: 1px solid var(--text-color);
}

.popover-body {
    color: var(--text-color);
}

.bs-popover-auto[x-placement^="left"] > .arrow::after,
.bs-popover-left > .arrow::after {
    right: 1px;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: #363c50;
}

.arrow::after,
.bs-popover-right .arrow::after {
    border-right-color: #363c50;
}

.sidebar-toggle i {
    vertical-align: middle;
    font-size: 38px;
    color: var(--white);
}
.sidebar-height {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 90vh;
}

.sidebar-height::-webkit-scrollbar {
    width: 2px;
    border-radius: 5px;
    background-color: #fff;
}

.sidebar-height::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #f5f5f5;
}

.sidebar-height::-webkit-scrollbar-track {
    background: #5c6070;
}

/* =================== Sidebar media query code start =============== */
@media (min-width: 320px) {
    .sidebar-toggle i {
        color: var(--medium-grey);
    }
}

@media (min-width: 991px) {
    aside ul li {
        display: inline-block;
        width: 100%;
        margin: 6px 0px 6px 10px;
    }
}

@media (min-width: 1150px) {
    aside ul li {
        display: inline-block;
        width: 100%;
        margin: 10px 0px 10px 10px;
    }
}

/* =============== Sidebar media query end ========================== */
/*7. Progressbar
==============================================================================*/
.circle-progress {
    position: relative;
    height: 90px;
    width: 90px;
    display: block;
    margin: 0 auto;
    margin-top: 14px;
    margin-bottom: 5.62px;
}

.circle-progress div {
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.circle-progress div span {
    position: absolute;
    font-family: Arial;
    font-size: 25px;
    line-height: 78px;
    height: 78px;
    width: 78px;
    left: 10.45px;
    top: 10.5px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--main-color);
}

.circle-progress .rotate {
    clip: rect(0 49px 105px 0);
}

.circle-progress .left {
    clip: rect(0 50px 100px 0);
    opacity: 1;
    left: -1px;
}

.circle-progress .right {
    clip: rect(0 50px 100px 0);
    transform: rotate(180deg);
    opacity: 0;
}

@keyframes toggle {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* =============== Progressbar media query code start =================== */
@media (min-width: 320px) {
    .circle-box .card {
        height: auto;
    }

    .circle-progress h5 {
        height: 36px;
    }
}

@media (min-width: 376px) {
    .circle-box h5 {
        height: 60px !important;
    }
}

@media (min-width: 481px) {
    .circle-progress {
        margin-top: 22px;
    }
}

@media (min-width: 768px) {
    .circle-box .card {
        height: 747px;
    }

    .circle-box h5 {
        height: auto !important;
    }
}

@media (min-width: 769px) {
    .circle-box .card {
        height: 717px;
    }

    .circle-progress {
        margin-top: 20px;
    }
}

@media (min-width: 992px) {
    .circle-box .card {
        height: 637px;
    }

    .circle-progress {
        margin-top: 0px;
    }
}

@media (min-width: 1025px) {
    .circle-box .card {
        height: 744px;
    }

    .circle-progress {
        margin-top: 15px;
    }
}

@media (min-width: 1027px) {
    .circle-progress {
        margin-top: 5px;
    }

    .circle-box .card {
        height: 665px;
    }
}

@media (min-width: 1085px) {
    .circle-box .card {
        height: 688px;
    }

    .circle-progress {
        margin-top: 9px;
    }
}

@media (min-width: 1334px) {
    .circle-box .card {
        height: 664px;
    }
}

/* ================== Progressbar media query code end ========================== */
/*8. Bootstrap default classes
=================================================================================*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.form-control,
.form-control:focus,
.form-control:active,
.form-control:disabled {
    background: #262f43;
    outline: inherit;
    box-shadow: none;
    color: var(--white) !important;
    border: none;
}

.form-control::placeholder {
    color: #7987a1 !important;
}

.modal-content,
.easy-autocomplete-container ul li,
.easy-autocomplete-container ul .eac-category,
.alert-light {
    background: var(--main-color);
    color: var(--white);
    z-index: 9999;
}

.modal-content .modal-header span {
    color: var(--white);
}

.modal-body::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.modal-body::-webkit-scrollbar-track {
    background-color: #7987a1;
}

.modal-body::-webkit-scrollbar-thumb {
    background-color: #727cf5;
}

.modal-header .close {
    outline: none;
}

main ul.pagination .page-item.disabled {
    cursor: no-drop;
}

main ul.pagination .page-item.disabled .page-link {
    background-color: transparent;
}

main ul.pagination .page-item .page-link {
    background-color: transparent;
    color: var(--white);
}

main ul.pagination .page-item.active .page-link {
    border-color: var(--white);
    background-color: var(--medium-red);
}

main ul.pagination .page-item .page-link:hover {
    background-color: var(--light-grey);
}

select,
select.select,
select.select:focus,
select.select:active {
    background: var(--bg-search);
    color: var(--white);
    z-index: 9999;
    font-size: 1rem;
}

main .nav-tabs li {
    border-radius: 5px;
    margin-right: 6px;
}

main .nav-tabs li.nav-item a.nav-link.active,
main .nav-tabs li a.nav-link:hover {
    background: #f34f65;
    border-color: transparent;
}

main .nav-tabs li.nav-item a.nav-link {
    background-color: var(--main-color);
    line-height: 14px;
    color: var(--medium-grey);
    border-radius: 4px;
}

main .sq1shield-ticket .card-header ul li {
    list-style-type: none;
    display: inline-block;
    padding: 0 15px 0 0;
}

/* Bootstrap default classes media query responsive
========================================================================== */
@media (min-width: 320px) {
    main ul.pagination li {
        display: inline-block;
    }

    main .nav-tabs li.nav-item {
        margin-bottom: 10px;
    }

    main ul.pagination {
        display: block;
    }

    main .sq1shield-ticket form .col-auto {
        margin-top: 10px;
    }

    main .sq1shield-ticket .card-header ul li {
        display: inherit;
        padding: 0 15px 0 0;
    }
}

@media (min-width: 481px) {
    main .sq1shield-ticket form {
        justify-content: center !important;
    }

    main .sq1shield-ticket form .col-auto {
        margin-top: 10px;
    }
}

@media (min-width: 768px) {
    main .sq1shield-ticket .card-header ul li {
        display: inline-block;
        padding: 0 10px 0 0;
    }
}

@media (min-width: 814px) {
    main .nav-tabs li.nav-item {
        margin-bottom: auto;
    }
}

@media (min-width: 971px) {
    main ul.pagination li {
        display: table-cell;
    }

    main .sq1shield-ticket .card-header ul li {
        display: inline-block;
        padding: 0 15px 0 0;
    }
}

/*  Policy
=============================================================*/
.font-25 {
    font-size: 25px;
}

.padd-12 {
    padding: 12px;
}

.padd-5 {
    padding: 5px;
}

.bottom-0 {
    bottom: 0;
}

.dashboard-plcy a:hover {
    color: var(--light-grey);
}

.dashboard-plcy h4 {
    font-size: 35px;
    color: var(--white);
}

.dashboard-plcy table {
    table-layout: fixed;
    width: 100%;
    vertical-align: middle;
}

.dashboard-plcy h5 {
    font-size: 17px;
}

.card.custom-plcy {
    /* background: var(--light-black); */
    border: 1px solid #52575d;
}

.custom-plcy h5.card-title {
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.custom-plcy h5 span:nth-child(2) {
    font-weight: 400;
    color: var(--border);
    font-size: 13px;
}

.custom-plcy h5 span.badge {
    font-size: 11px;
}

.bookmark:checked ~ .fa-bookmark {
    color: var(--medium-red);
}

.custom-plcy i.fa-bookmark {
    cursor: pointer;
}

.card.custom-plcy .left {
    position: fixed;
    left: 5px;
}

.custom-plcy .table td {
    border: 0;
    width: 50%;
    padding: 6px 0;
}

.custom-plcy .table td:nth-child(2) {
    color: var(--border);
}

.t-white {
    color: var(--white);
}

.max-width {
    max-width: inherit;
}

.bookmark {
    visibility: hidden;
    width: 0;
    margin-left: -3px;
    cursor: pointer;
}

.max-width-policy {
    max-width: inherit;
}

.plcy-cirlce {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: var(--body-bg);
    border-radius: 100%;
    line-height: 2.7;
    margin-bottom: 18px;
    border: 5px solid #707880;
}

.custom-plcy .modal {
    background: #0606064d;
}

.custom-select:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--border);
}

.custom-select {
    background: #262f43
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='grey' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
        no-repeat right 0.75rem center/8px 10px !important;
}

.fs-dropdown {
    color: var(--main-color);
}

@media (min-width: 320px) {
    .border-btm {
        border-bottom: 1px solid var(--border);
    }

    .border-rht {
        border-right: 1px solid transparent;
    }

    .border-lft {
        border-left: 1px solid transparent;
    }

    .width-50 {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .border-btm {
        border-bottom: 0px solid transparent;
    }

    .border-rht {
        border-right: 1px solid var(--border);
    }

    .border-lft {
        border-left: 1px solid var(--border);
    }
}

@media (min-width: 1200px) {
    .col-xl-3 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .w-40 {
        width: 41%;
    }

    .w-60 {
        width: 59%;
    }

    .width-25 {
        width: 25%;
    }

    .width-75 {
        width: 75%;
    }
}

@media (min-width: 1330px) {
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* slider notification
========================================================================== */
.notification {
    position: fixed;
    bottom: 12px;
    right: -300px;
    z-index: 9999;
}

/* Notification Styles
========================================================================== */
.notifi-count {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: -10px !important;
    right: 4px !important;
    background-color: #727cf5 !important;
    color: #fff;
}

@media screen and (max-width: 1199px) {
    .notifi-count {
        top: -15px !important;
        left: 16px !important;
    }
}

.notify-content-body,
.mob-notify-content-body {
    scrollbar-color: #727cf5 #7987a1;
    scrollbar-width: thin;
}

.notify-readmore {
    background: #0e182e;
    bottom: -10px;
}

.notify-content-body::-webkit-scrollbar,
.mob-notify-content-body::-webkit-scrollbar-track {
    width: 4px;
    height: 4px;
}

.notify-content-body::-webkit-scrollbar-track,
.mob-notify-content-body::-webkit-scrollbar-track {
    background-color: #7987a1;
}

.notify-content-body::-webkit-scrollbar-thumb,
.mob-notify-content-body::-webkit-scrollbar-track {
    background-color: #727cf5;
}

#single_notification,
#single_notification_new {
    background-color: #262f43;
    margin: 5px auto;
    padding: 10px;
    transition: 0.1s all;
    border-left: 5px solid var(--secondary);
}

#single_notification_new {
    background-color: #14203c;
    border-left: 5px solid #00a75a;
}

#single_notification:hover,
#single_notification_new:hover {
    /* background-color: #ff3366; */
    background-color: #23345c;
}

.toast {
    background-color: #727cf5 !important;
    color: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: 0.2s all;
    margin-right: -250px;
}

.toast.fade.show {
    margin-right: 0px;
}

.custom-border-bottom {
    border-bottom: 1px solid #1b2849 !important;
}

.custom-border-1px {
    border: 1px solid #1b2849 !important;
}

.custom-border-top {
    border-top: 1px solid #1b2849;
}

.dark-card {
    background-color: #0e182e;
    color: #fff;
}

/* Custom Table Styles
========================================================================== */

.custom-responsive-table th,
.custom-responsive-table td {
    background-color: #0e182e;
    color: var(--medium-grey);
    border-bottom: 1px solid #bebebe42;
    border-top: none;
}

.custom-responsive-table .table thead th {
    color: #159cb0;
    background-color: #13203d;
    border-top: 1px solid #bebebe42;
    border-bottom: 1px solid #bebebe42;
    font-weight: 500;
}

.custom-responsive-table .table thead th a {
    color: #159cb0;
}

.custom-responsive-table-height {
    height: 500px;
}

.large-td {
    min-width: 200px;
    width: 450px;
}

main .table td.fit,
main .table th.fit {
    white-space: nowrap;
    width: 1%;
}

main .table td {
    vertical-align: middle;
}

main .table thead th a:hover,
main .table thead th a:focus,
main .table thead th a:active {
    color: #444a4e;
    font-weight: 600;
}

.online,
.answer-yes {
    width: 12px;
    height: 12px;
    background-color: #05c95b;
    border-radius: 50%;
    box-shadow: #000 0 -1px 7px 1px, inset #460 0 -1px 9px, #7d0 0 2px 12px;
}

.offline,
.answer-no {
    width: 12px;
    height: 12px;
    background-color: #ff3366;
    border-radius: 50%;
    box-shadow: #000 0 -1px 7px 1px, inset #600 0 -1px 9px, #f00 0 2px 12px;
}

.disconnected {
    width: 12px;
    height: 12px;
    background-color: #7987a1;
    border-radius: 50%;
    box-shadow: #000 0 -1px 7px 1px, inset #1f1f1f 0 -1px 9px,
        #797d74 0 2px 12px;
}

.never-connected,
.not-answered {
    width: 12px;
    height: 12px;
    background-color: #7987a1;
    border-radius: 50%;
    box-shadow: #000 0 -1px 7px 1px, inset #1f1f1f 0 -1px 9px,
        #797d74 0 2px 12px;
}

.right-4px {
    right: -4px !important;
}

.answer-partial {
    width: 12px;
    height: 12px;
    background-color: #fff700;
    border-radius: 50%;
    box-shadow: #000 0 -1px 7px 1px, inset #fff700 0 -1px 9px,
        #fcff45 0 2px 12px;
}

.answer-NA {
    width: 12px;
    height: 12px;
    background-color: #c3a9ff;
    border-radius: 50%;
    box-shadow: #000 0 -1px 7px 1px, inset #c3a9ff 0 -1px 9px,
        #fdfdfd 0 2px 12px;
}

.read {
    color: #99a3b0;
}

.un-read {
    color: #dad8d8;
}

.text-color {
    color: #fff;
}

.text-color:hover {
    color: #fff;
}

.truncate-container {
    max-height: 135px;
    overflow-y: auto;
    scrollbar-color: #727cf5 #7987a1;
    scrollbar-width: thin;
}

.truncate-container::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.truncate-container::-webkit-scrollbar-track {
    background-color: #7987a1;
}

.truncate-container::-webkit-scrollbar-thumb {
    background-color: #727cf5;
}

/* Predefined Tags
  =========================================================================== */

.input-container {
    border: 2px solid #1b2849;
    border-radius: 0.2rem;
    display: flex;
    align-content: flex-start;
    padding: 0.4rem;
    margin-bottom: 1rem;
}

.tag-container {
    border: 2px solid #1b2849;
    border-radius: 0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 0.4rem;
    overflow-x: auto;
}

.tag-container,
.input-container input,
.tag-container .tag {
    background: #070d19;
    color: #fff;
}

.tag-container .tag {
    margin: 0.4rem;
    padding: 0.4rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    cursor: default;
}

.tag .closed_tag {
    font-size: 0.5rem;
    font-style: normal;
    margin-left: 0.4rem;
}

.closed_tag::after {
    content: "✕";
    height: 10px;
    width: 10px;
    color: red;
    cursor: pointer;
    vertical-align: top;
}

.input-container input {
    padding: 0.4rem;
    font-size: 1.2rem;
    border: 0;
    outline: none;
    flex: 1;
}

.input-container input::placeholder {
    font-size: 1rem;
    color: #bebebe;
}

/* auto-response */
.auto-response-view-card {
    background-color: #192643 !important;
}

#overlay,
#mob_overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    cursor: pointer;
}

/* Otp Page
  =========================================================================== */
.digit-group input {
    width: 40px;
    height: 50px;
    border-radius: 5px;
    font-size: 2rem;
    border: none;
    /* border-bottom: 2px solid #bebebe42; */
    line-height: 50px;
    text-align: center;
    background: #192643;
    color: var(--text-color);
    margin: 0 8px;
}

.digit-group input:focus-visible {
    border: none;
    outline: none;
    background: #21386a;
}

/* vendor Portal */
@media (max-width: 1200px) {
    .nav-list-container {
        position: fixed;
        width: 70%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: var(--main-color);
        color: white;
        z-index: 9999;
        transform: translateX(-100%);
        transition: all 0.3s linear;
        opacity: 0.5;
    }
}

/*toggler button*/
.cust-navbar .cust-toggler {
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 3;
    outline: none;
    position: absolute;
    right: 1rem;
    top: 78px;
    margin-left: 0.6rem;
}

.card-header {
    background-color: #0b142b;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    z-index: 1;
    color: var(--text-color);
    text-decoration: none;
    background-color: #23345c;
}

#read_notification:hover,
#unread_notification:hover {
    background-color: #23345c;
}

.closed-host {
    border: 1px solid #26ae4380;
    color: #26ae4380;
}

.open-host {
    border: 1px solid #58d7ff80;
    color: #58d7ff80;
}

.hostname-highlighted {
    color: #ffc10780;
}

.reset-highlighted {
    color: #8bc34a80;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 13px;
    width: 13px;
    cursor: pointer;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg viewPort='0 0 12 12' version='1.1' xmlns='http://www.w3.org/2000/svg'%3e%3cline x1='1' y1='11' x2='11' y2='1' stroke='red' stroke-width='2'/%3e%3cline x1='1' y1='1' x2='11' y2='11' stroke='red' stroke-width='2'/%3e%3c/svg%3e");
}
