/*
 |--------------------------------------------------------------------------
 | 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;
    --dark-grey: #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;
    --purple: #2abbac;
    --high: #D37415;
    --status-closed: #26ae43;
    --status-open: #ff6d03;
    --status-in-progress: #2781fd;
    --light-yellow: #ffc200d4;
    --border: #cacbd8;
    --border-light: #5d5d5d;
    /* --bg-search: #1B2849; */
    --bg-search: #262F43;
    --white: #fff;
    /* --font-family: 'Ubuntu', 'Exo 2', 'Fira Sans', sans-serif; */
    --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;
    /* font-size: 100%; */
}

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: .48em .58em;
    margin-top: 5px;
    font-weight: 400;
}

.h-250 {
    height: 250px;
}

.h-600 {
    height: 600px;
}

.hv-75 {
    height: 75vh;
}

.w-450 {
    max-width: 450px;
    flex: 100%;
}

.w-20 {
    width: 20% !important;
}

.w-5{
  width: 5rem;
}
.w-6{
  width: 6rem;
}

.w-7{
  width: 7rem;
}

.w-9{
  width: 9rem;
}

/* .w-300 {
    max-width: 300px;
} */
.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(--dark-grey);
}

.text-color {
  color: var(--white);
}

.custom-border-color {
  border-color: #1B2849 !important;
}

.vendor-footer {
    border-top: 0.1px solid #888383;
    padding: 6px 9px 6px 1px;
    background: #37404a;
    color: white;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 999;
}

input[type="radio"] {
    /* visibility: hidden; */
    /* width: 0; */
    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(--dark-grey);
    font-size: 0.8em;
    color: white;
    border-radius: 50%;
    line-height: 10px;
    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);
}

.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);
}

.status-risk_accepted {
    color: var(--status-closed);
}

.status-open {
    color: var(--status-open);
}

.status-progress {
    /* color: var(--status-in-progress); */
    background-color: #36A3E9;
}

.status-new {
    color: #f65456;
}

.open, .assigned, .accepted, .on_hold, .completed, .closed, .rejected, .risk_accepted, .repeated, .false_positive {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.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 {
  /* background-color: #36A2EB; */
  border: 1px solid #36A2EB;
  color: #36A2EB;
}

.i-primary {
  color: #36A2EB !important;
}

.i-secondary {
  color: var(--secondary) !important;
}

.i-danger {
  color: #F34F65 !important;
}

.i-success {
  color: #4BC0C0 !important;
}

.import-btn {
  color: var(--white);
  background-color: #36A3E9;
}

.import-btn:hover {
  color: var(--white);
  background-color: #36A3E9;
}

/* .i-primary:hover {
  color: var(--primary-dark);
  cursor: pointer;
}

.i-secondary:hover {
  color: var(--secondary-dark);
  cursor: pointer;
}

.i-danger:hover {
  color: var(--danger-dark);
  cursor: pointer;
}

.i-success:hover {
  color: var(--success-dark);
  cursor: pointer;
} */

.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(--dark-grey);
    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;
    /* word-break: break-all; */
}

main .custom-box .card h6 {
    font-size: 35px;
    font-weight: var(--bold);
}

main .chart-box .card {
    height: 400px;
}

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(--dark-grey);
}

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 var(--border-light);
    padding: 10px 7px;
}

main .table thead th {
    border: 1px solid transparent;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

main .table.Vmanagment-table td, .table.Vmanagment-table th {
    border: 1px solid var(--border-light);
    padding: 10px 7px;
}

main .table.Vmanagment-table thead th {
    border: 1px solid var(--border-light);
    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;
    /* word-break: break-all; */
}

.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(--dark-grey);
}

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 {
    /* height: 200px; */
    overflow: auto;
    overflow-x: hidden;
    align-content: center;
    display: block;
    /* display: unset; */
}

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(--dark-grey);
    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 {
    border: 1px solid var(--border-light);
} */
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: 11px;
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
}

.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;
    }

    /* .custom-table-title span {
        display: block;
    } */
    #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%;
    }

    /* main .network-height {
        height: 266px;
    } */
}

@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: 400px;
    }

    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;
    }

    /* .custom-table-title span {
        display: inherit;
    } */
}

@media (min-width:1025px) {
    main .custom-box .card-body {
        padding: 14px;
    }

    /* main .table td {
        word-break: break-all;
    } */
}

@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(--dark-grey) !important;
    border-bottom: 1px #1B2849 solid;
    height: 61px;
}

header .sq1core-navbar .navbar-brand {
    padding-right: 18px;
}

header .sq1core-navbar .logoutMenu {
    /* margin: .125rem -86px 0; */
    margin: 0.7em -85px 0;
    background: var(--dark-grey);
    color: var(--medium-grey);
    width: 176px;
}

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(--dark-grey);
    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 .navbar-nav img {
    margin-top: 3px;
} */
header .sq1core-navbar .client_logo {
    /* height: 30px; */
    width: 150px;
}

/*================== 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(--dark-grey);
        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 {
        margin: 0.7em 0 0;
        width: 100%;
    }

    header .sq1core-navbar .client_logo {
        /* height: 30px; */
        /* width: 71px; */
    }
}

@media (min-width:481px) {
    header .sq1core-navbar .logoutMenu {
        margin: 0.7em 0 0;
        width: 176px;
        float: right;
    }

    header .sq1core-navbar .client_logo {
        width: 137px;
    }
}

@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 {
        margin: 0.7em -85px 0;
        width: 176px;
    }

    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(--dark-grey);
    border-right: 1px #1B2849 solid;
    z-index: 1030;
}

aside ul {
    padding: 0;
    margin: 0;
}

/* aside ul .sidebar-height::-webkit-scrollbar {
    width: 2px;
    background-color: #f5f5f5;
} */
aside ul li {
    display: inline-block;
    width: 100%;
    /* margin: 15px 0px 15px 9px; */
    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;
    /* color: var(--medium-grey); */
    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(--dark-grey);
    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;
}

.sidebar-toggle i {
    vertical-align: middle;
    font-size: 38px;
    color: var(--white);
}

.sidebar-height::-webkit-scrollbar {
    width: 2px;
    border-radius: 5px;
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #f5f5f5;
}

::-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: 15px 0px 15px 9px; */
        margin: 6px 0px 6px 10px;
    }
}

@media (min-width:1150px) {
    aside ul li {
        display: inline-block;
        width: 100%;
        /* margin: 15px 0px 15px 9px; */
        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(--dark-grey);
}

.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 =================== */
/* =============== 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-color: var(--light-grey); */
    border: none;
}

.form-control::placeholder {
    color: var(--white) !important;
}

.modal-content, .easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category, .alert-light {
    background: var(--dark-grey);
    color: var(--white);
    z-index: 9999;
    font-size: 1rem;
}

.modal-content .modal-header span {
    color: var(--white);
}

.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(--dark-grey);
    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 {
        justify-content: center !important;
    } */
    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 {
    color: var(--primary);
} */
.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 var(--border); */
    border: 1px solid #52575d;
    /* border-bottom: 3px solid var(--border); */
}

.custom-plcy h5.card-title {
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 14px;
}

/* .custom-plcy h5 span {
    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);
}

/* .custom-table-title span {
    padding: 2px 10px;
} */
.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-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='white' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E")
} */

.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(--dark-grey);
}

@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%;
    }
}
