/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */
:root {
    --brd-yellow: #6366f1;
    --brd-dark-yellow: #4f46e5;
    --brd-dark-grey: #262626;
    --brd-lite-grey: #F4F5FB;
}
.inter-600 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.inter-700 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
body {
    color: #515151;
    box-sizing: border-box;
}
select {
    cursor: pointer;
}
h2 span {
    font-size: 8pt;
}
#twofab_notification {
    border-radius: 15px;
    border: 5px solid #ecc900;
    padding: 10px 10px 10px 10px;
    margin-bottom: 20px;
    background-color: #fff;
}
#twofab_notification h2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    background-color: #F4F5FB;
    border-radius: 10px;
    width: fit-content;
    margin: 0 auto;
    padding: 5px 10px 5px 10px;
    border: 2px solid #cbcbcb;
}
#twofab_notification p {
    padding: 10px;
}
#twofab_notify_tack {
    width: 32px;
    height: 32px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
    margin-right: 5px;
    /* border: 1px solid #cbcbcb; */
}
#twofab_notify_tack i {
    color: #ecc900;
}
.fa-solid.outline {
    /* color: white; or whatever the icon fill color is */
    /* text-shadow:
        -1px -1px 1px #000,
        1px -1px 1px  #000,
        -1px  1px 1px #000,
        1px  1px 1px  #000; */
        transform: rotate(35deg);
}
.status_good {
    color: #19b051;
}
.status_degraded {
    color: #fbd900;
}
.status_down {
    color: #d4000e;
}
.connected_accounts {
    margin-top: 5px;
    margin-bottom: 10px;
    display: flex;
    font-size: 9.5pt;
    justify-content: space-around;
}
.toptop {
    width: 100%;
    margin-bottom: 20px;
}
.tt_client_select {
    float: left;
    width: 40%;
    justify-self: ;
}
.tt_date_picker {
    float: right;
    width: 40%;
    text-align: right;
}
.connected_accounts div {
    width: 150px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 4px;
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 5px;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}
a, a:link {
    text-decoration: none;
    color: #1b98f8;
    display: inline-block;
}
a:visited {
    color: #3f89b8;
}
#msg_table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
    vertical-align: top;
}

#msg_table tbody tr:nth-child(even) {
    background-color: #ffffff;
    vertical-align: top;
}
#msg_table tbody tr:hover {
    background-color: #6366F1;
    color: #fff;
}
#stats_content thead th {
    font-weight: bolder; 
    padding: 5px;
}
#stats_content tbody tr td {
    background-color: #fff;
    padding: 5px;
}
/* th.span div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
    background-color: #fff;
} */
.login-body {
    background-color: var(--brd-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box !important;
}
#login-container {
    width: 90%;
    max-width: 500px;
    background-color: var(--brd-lite-grey);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#login-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
#login-container input[type=text], #login-container input[type=password] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    margin: 10px 0;
}
.twofab_subheading {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* justify-content: center; */
    align-items: center;
    margin-bottom: 15px;
}
.twofab_content_box {
    background-color: #fff;
    display: flex;
    /* justify-content: space-evenly; */
    /* align-items: center; */
    padding: 10px;
    flex-wrap: wrap;
    border-radius: 10px;
    font-size: 10px;
    margin-bottom: 20px;
}
.twofab_content_box form {
    width: 100%;
}
#login-container .btn {
    width: 100%;
}
.btn-brd {
    padding: 10px !important;
    background-color: var(--brd-yellow);
    font-weight: bold;
    color: #fff;
    border: 0 !important;
}
.btn-brd:hover {
    background-color: var(--brd-dark-yellow);
    font-weight: bold;
    color: #fff;
}
th.span
/*
 * -- HELPER STYLES --
 * Over-riding some of the .pure-button styles to make my buttons look unique
 */
.primary-button,
.secondary-button {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-radius: 20px;
}
h1 {
    margin-top: 50px;
    display: flex;
    align-items: center;
}
h1 .i_wrap {
    background-color: #fff;
    border-radius: 50%;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 44px;
    height: 44px;
    font-size: 32px;
}
h2 .sub_i_wrap {
    background-color: #fff;
    border-radius: 50%;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 32px;
    height: 32px;
    font-size: 18px;
}
.page_heading {
    margin-top: 25px;
}
#twofab_system_box {
    background-color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    font-size: 10px;
    margin-bottom: 20px;
}
#twofab_system_box strong {
    font-weight:700 !important;
    text-decoration: underline;
}
#twofab_dash_scorebox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.twofab_dash_sbox {
    width: 20%;
    height: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: #fff;
    border-radius: 10px;
    align-items: center;
}
.twofab_dash_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 32px;
    border-right: 1px solid #eaeaea;
    height: 80%;
}
.twofab_dash_amt {
    display: flex;
    height: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}
.twofab_dash_amt strong {
    font-size: 10px;
    justify-self: flex-start;
    padding: 0px 0px 5px 0px;
    color: #6366F1;
    font-family: "Inter", sans-serif;
    font-weight: 700; 
    font-style: normal;
}
.twofab_dash_amt span {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}
.sys_good {
    color: #19b051
}
.primary-button {
    color: #fff;
    background: #d6318a;
    margin: 1em 0;
}
.secondary-button {
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
    padding: 0.5em 2em;
    font-size: 80%;
}
.pure-menu-item h4 {
    color: #f1f1f1;
    margin: 10px 0px 5px 5px;
    font-size: 8pt;
}
.pure-menu-link.selected {
    background-color: #eee;
}
.tbl_txt_styling {
    font-size: 9pt;
}
/* table.hover tbody tr:hover {
    background-color: var(--brd-yellow);
    color: #fff;
} */
.action {
    background-color: #fff;
    border-radius: 4px;
    padding: 3px;
    color: #000;
    cursor: pointer;
    border: 1px solid #494949;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}
.action i {
    margin-right: 3px;
}
.dt-info {
    text-transform: uppercase;
    font-size: 8pt;
    padding:2px;
    font-weight: bold;
}
.dt-paging {
    font-size: 9pt;
}
/*
 * -- LAYOUT STYLES --
 * This layout consists of three main elements, `#nav` (navigation bar), `#list` (email list), and `#main` (email content). All 3 elements are within `#layout`
 */
#layout, #nav, #list, #main {
    margin: 0;
    padding: 0;
}

/* Make the navigation 100% width on phones */
#nav {
    width: 100%;
    height: 40px;
    position: relative;
    background: #515151;
    text-align: center;
}
/* Show the "Menu" button on phones */
#nav .nav-menu-button {
    display: block;
    top: 0.5em;
    right: 0.5em;
    position: absolute;
}

/* When "Menu" is clicked, the navbar should be 80% height */
#nav.active {
    height: 80%;
}
/* Don't show the navigation items... */
.nav-inner {
    display: none;
}

/* ...until the "Menu" button is clicked */
#nav.active .nav-inner {
    display: block;
    padding: 2em 0;
}
#num_content {
    /* margin-top: 15px; */
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#num_content h5 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0px 15px 10px;
}
.upd_sent {
    color: #00b000;
}
#connected_nums {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    font-size: 12px;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
}
#invite_nums {
    margin-top: 15px;
    /* margin-left: 5%; */
    /* margin-right: 5%; */
    width:100%;
    font-size: 12px;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
}
#invite_nums ul li input[type=text] {
    padding: 5px;
    width: 90%;
}
#invite_nums p {
    margin: 20px;
}
#invite_nums ul li {
    list-style-type: none;
    margin-left: 30px;
    margin-bottom: 10px;
}
#invite_nums ul li label {
    display: inline-block;
    width: 85px;
}
ul.form_here li {
    list-style-type: none;
    margin-left: 30px;
    margin-bottom: 10px;
}
ul.form_here li label {
    display: inline-block;
    width: 85px;
}
.twofab_content_box p {
    margin: 20px;
}
.pure-menu {
    width: 100%;
    display: flex;
    justify-content: start;
    align-content: center;
}
/*
 * -- NAV BAR STYLES --
 * Styling the default .pure-menu to look a little more unique.
 */
#nav .pure-menu {
    background: transparent;
    border: none;
    text-align: left;
}
    #nav .pure-menu-link:hover,
    #nav .pure-menu-link:focus {
        background: #515151;
    }
    #nav .pure-menu-link {
        color: #fff;
        /* margin-left: 0.5em; */
    }
    #nav .pure-menu-heading {
        border-bottom: none;
        font-size:110%;
        color: rgb(75, 113, 151);
    }
.pure-menu-list {
    width: 100%;
    display: flex;
    flex-direction: column;

}
.pure-menu-item {
    width: 100%;
}
.pure-menu-list li {
    width: 100%;
    display: flex;
    justify-content:start;
    align-items: center;
}
.pure-menu-list li a {
    display: flex;
    justify-content:space-evenly;
}
/*
 * -- EMAIL STYLES --
 * Styles relevant to the email messages, labels, counts, and more.
 */
.email-count {
    color: rgb(75, 113, 151);
}

.email-label-personal,
.email-label-work,
.email-label-travel {
    display: flex;
    width: 20px;
    height: 20px;
    /* padding-top: 2px; */
    /* display: inline-block; */
    /* margin-right: 0.5em; */
    border-radius: 3px;
    font-size: 10pt;
    justify-content: center;
    align-items:center;
    color: #000;
    margin-right: 5px;
}
.email-label-personal {
    /* background: #ffc94c; */
    background: #fdf152;
}
.email-label-work {
    /* background: #41ccb4; */
    background: #83e951;
}
.email-label-travel {
    background: #6FC2ed;
}
.user-container {
    background: #f1f1f1;
    width: 96%;
    font-size: 6pt;

    align-items: center;
    padding: 2px;
    align-self: center;
    margin-top: auto;
    margin-bottom: 10px;
}
.user-container a {
    color: #d6318a;
}
.user-container .btn {
    display: block;
}
.user-container div {
    margin-left: 5px;
    line-height: 1em;
    text-align: left;
}
.user-container h2 {
    font-size: 12pt;
    font-weight: bold;
}

/* Email Item Styles */
.email-item {
    padding: 0.9em 1em;
    border-bottom: 1px solid #ddd;
    border-left: 6px solid transparent;
}
    .email-avatar {
        border-radius: 3px;
        margin-right: 0.5em;
    }
    .email-name,
    .email-subject {
        margin: 0;
    }
    .email-name {
        text-transform: uppercase;
        color: #999;
    }
    .email-desc {
        font-size: 80%;
        margin: 0.4em 0;
    }

.email-item-selected {
    background: #eee;
}
.email-item-unread {
    border-left: 6px solid #1b98f8;
}
.container {
    min-height: 525px;
}
/* Email Content Styles */
.email-content-header, .email-content-body, .email-content-footer {
    padding: 1em 2em;
}
.email-content-header {
    border-bottom: 1px solid #ddd;
}

    .email-content-title {
        margin: 0.5em 0 0;
    }
    .email-content-subtitle {
        font-size: 1em;
        margin: 0;
        font-weight: normal;
    }
        .email-content-subtitle span {
            color: #999;
        }
.email-content-controls {
    margin-top: 2em;
    text-align: right;
}
    .email-content-controls .secondary-button {
        margin-bottom: 0.3em;
    }

.email-avatar {
    width: 40px;
    height: 40px;
}
.page-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-flow: row nowrap;
    height: 100%;
    z-index: 1;

}
.page-container nav {
    z-index: 999;
}
.lp_folder_select span {
    font-weight: bold;
    font-size: 9pt;
}
.lp_folder_select select {
    font-size: 9pt;
}
#lp_folder_form {
    display: inline-block;
}
.nav-inner {
    width: 100% !important;
    display: flex !important;
    flex-flow: row wrap;
    align-content: start;
    justify-content: center;
    align-items: center;

}
.dataTables_wrapper {
    width: 100%;
    /* margin-top: 15px; */
}
.nav-inner img {
    display: block;
    width: 75%;
    margin-bottom: 20px;
}
.left-bar {
    display: flex;
    background-color: #3f3f3f;
    width: 20%;
    height: 100vh;
    flex-direction: column;
    position: fixed;
    /* flex: 1; */
}
.right-content {
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    margin-left: 2%;
    flex-grow: 1;
    width:79.5%;
    /* overflow: auto; */
    z-index: 1;
    margin-right: 2%;
}
.dt-button {
    padding: 5px;
    background-color: #f1f1f1;
    color: ##3F3F3F;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 10pt;
}
.dt-button:hover {
    background-color: #999;
}
.shortcuts {
    padding: 5px;
}
.date-picker-wrapper {
    /* background: url('/images/top_bg.png') repeat-x; */
    background-position: bottom;
    background-color: #f1f1f1;
}
.custom-shortcut {
    padding: 2px;
}
.hide-mobile {
    display: none;
}
.time_availability input[type=text] {
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    cursor: pointer;
}
.time_availability select {
    border-radius: 5px;
    padding: 5px;
    text-align: center;
}
.time_availability input[type=submit] {
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}
.text_left {
    text-align: left !important;
}
#avail_table {
    border: 1px solid #000;
}
#avail_table td {
    border: 1px solid #000;
    padding: 5px;
}
#calendars_nav {
    padding: 10px;
    border-radius: 10px;

}
#calendars_nav ul {
    padding: 10px;
    list-style-type: none;
    display: flex;
    /* background-color: pink; */
    border-radius: 10px;
    justify-content: space-around;
}
#calendars_nav li {
    display: flex;

}
#rep_top_nav {
    width: 100%;
}
.secs_input {
    padding: 3px;
    border-radius: 5px;
    border: 1px solid #a3a3a3;
    width: 50px;
}
.secs_input:focus {
    border: 1px solid #FBA92C !important;
    outline: none;
}
.dt-input {
    border-radius: 5px !important;
    background-color: #fff !important;
    padding: 3px !important;
    border: 1px solid #a3a3a3 !important;
}
.dt-input:focus {
    border: 1px solid #FBA92C !important;
    outline: none;
}
#datedate {
    border-bottom: 4px solid #FBA92C;
}
#calendar_list {
    width: 96%;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px;
}
#calendar_list td {
    border: 1px solid #000;
    padding: 5px;
    font-size: 8pt;
}
.col_hours {
    font-size: 8pt;
}
/* .pure-menu-item {
    width: 100%;
}
.email-label-personal {
    width: 100%;
} */
#number_list {
    list-style-type: none;
}
#number_list li {
    padding: 10px 0px 10px 0px;
}
#number_table thead {
    font-size: 9pt;
    font-weight: bold;
}
#number_table tbody {
    font-size: 8pt;
}
#number_table {
    width: 90% !important;
}
.number_label_input {
    width: 250px;
}
#number_table.dataTable {
    width: auto !important;
    table-layout: auto !important;
}
#number_table tbody tr td:last-child {
    padding-right: 20px;
}
#available_number_table {
    width: 100%;
    font-size: 8pt;
}
#numbers_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
#number_search_box div {
    margin-bottom: 10px;
}
.details_icon {
    background-color: #FBA92C;
    color: #000;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:3px;
    border: 1px solid #262626;
}
.morh_icon svg {
    width: 18px;
}
.morh_icon span {
    display: none;
}
select {
    border: 1px solid #a3a3a3;
    border-radius: 5px;
}
input[type=submit] {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #a3a3a3;
    cursor: pointer;
}
.cnt_col {
    font-size: 10pt;
    margin-right: 5px;
}
#number_table tbody tr td div {
    display: flex;
    justify-content: flex-end;
}
/* #number_table tbody tr {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
} */
.col_c {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
#number_search_box div input, table tbody td input {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #a3a3a3;
}
#number_search_box div label {
    display: inline-block;
    width: 125px;
}
#numbers_nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
    width: 80%;
}
#available_number_table tbody td .num_feature {
    display: inline-block;
    padding: 0px 2px 0px 2px;
    margin: 2px;
    border: 1px solid #a3a3a3;
    background-color: #eaeaea;
    border-radius: 3px;
}
/* Mobile */
@media only screen and (max-width: 768px) {
    .sidebar-profile-info {
        display: none;
    }
}
/*
 * -- TABLET (AND UP) MEDIA QUERIES --
 * On tablets and other medium-sized devices, we want to customize some
 * of the mobile styles.
 */
@media (min-width: 40em) {
    
    .pure-menu-item h4 {
        font-size: 12pt;
    }
    /* Move the layout over so we can fit the nav + list in on the left */
    #layout {
        /* padding-left:500px; "left col (nav + list)" width */
        position: relative;
    }
    .inner-nav img {
        width: 30% !important;
    }
    /* These are position:fixed; elements that will be in the left 500px of the screen */
    #nav, #list {
        position: fixed;
        top: 0;
        bottom: 0;
        overflow: auto;
    }
    #nav {
        /* margin-left:-500px;  */
        /* "left col (nav + list)" width */
        /* width:150px; */
        /* height: 100%; */
    }

    /* Show the menu items on the larger screen */
    .nav-inner {
        display: block;
        padding: 2em 0;
    }

    /* Hide the "Menu" button on larger screens */
    #nav .nav-menu-button {
        display: none;
    }

    #list {
        margin-left: -350px;
        width: 100%;
        height: 33%;
        border-bottom: 1px solid #ddd;
    }

    #main {
        position: fixed;
        top: 33%;
        right: 0;
        bottom: 0;
        left: 150px;
        overflow: auto;
        width: auto; /* so that it's not 100% */
    }

}
.greygrey {
    background-color: #eaeaea;
}
.dead_space {
    width: 200px;
}

h6 {
    border-bottom: 1px dotted #d5d5d5;
    margin: 20px 0 0 4px;
    padding: 0 0 0 2px;
    font-size: 9pt;
    font-weight: bold;
}
h7 {
    border-bottom: 1px dotted #d5d5d5;
    margin: 0px 0 0 4px;
    padding: 0 0 0 2px;
    font-size: 8pt;
}
h5 {
    margin: 2px;
    padding: 2px;
}
.tactic_table tr td {
    text-align: center;
}
.container div img {
    width: 100% !important;
}
.container div form input {
    width: 100%;
}
.container div {
    width: 90%;
}
.alert {
    width: 100% !important;
    text-align: center;
}
.added-bottom-padding {
    padding-bottom: 20px;
}
#calendar_add li {
    margin: 15px;
    list-style-type: none;
}
#calendar_add li label {
    display: block;
    width: 175px;
}
#calendar_add li textarea {
    width: 350px;
    height: 200px;
    padding: 10px;
    font-size: 8pt;
}
#calendar_add li input[type=text] {
    padding: 5px;
    border-radius: 5px;
    font-size: 10pt;
    width: 225px;
}
#calendar_add li input[type=submit] {
    padding: 15px;
    border-radius: 5px;
    font-size: 12pt;
}
/*
 * -- DESKTOP (AND UP) MEDIA QUERIES --
 * On desktops and other large-sized devices, we want to customize some
 * of the mobile styles.
 */
@media (min-width: 60em) {
    .container div img {
        width: 60% !important;
    }
    .user-container {
        display: inline-flex;
        font-size: 8pt;
    }
    .hide-mobile {
        display: inline-block;
    }
    /* This will take up the entire height, and be a little thinner */
    #list {
        /* margin-left: -350px; */
        /* width:350px; */
        height: 100%;
        border-right: 1px solid #ddd;
    }

    /* This will now take up it's own column, so don't need position: fixed; */
    #main {
        position: static;
        margin: 0;
        padding: 0;
    }
    .pass_set_container {
        width: 50% !important;
        margin: 0 auto;
        text-align: center;
    }
}
.page_container {
    /* background: url('/images/top_bg.png') repeat-x; */
    padding-top: 15px;
    overflow: auto;
    /* display: inline-block; */
}
.pass_set_container {
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}
.pass_set_container input[type=password] {
    margin: 0 auto;
    width: 80%;
}
.btn {
    cursor: pointer !important;
}
/* landing pages */
.pr_lp_viewer {
    height: 900px;
}
.pr_lp_toolbar {
    width: 100%;
    position: relative;
    bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 50px;
    /* background-color: pink; */
}
.pr_lp_tb_details {
    flex-grow: 1;
    align-items: center;

}
.pr_lp_tb_controls {
    width: 125px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.pr_lp_tb_c_back, .pr_lp_tb_c_forward {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #a3a3a3;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* serps monitoring */
#ss_table tbody tr td {
    font-size: 10pt;
}
#monitored_table {
    width: 100% !important;
}
#add_monitorbox {
    width: 80%;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #a3a3a3;
    background-color: #f1f1f1;
    border-radius: 15px;
}
#add_monitorbox ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#add_monitorbox ul li {
    margin: 10px 0px 10px 0px;
}
#add_monitorbox ul li label {
    display: inline-block;
    width: 150px;
}
#add_monitorbox ul li input, #add_monitorbox ul li select {
    padding: 5px;
    border-radius: 5px;
}
#add_monitorbox ul li input[type=submit] {
    cursor: pointer;
}
.dt-search {
    text-align: right;
    padding-right: 5px;
    font-size: 10pt;
}
#monitored_table td {
    word-wrap: break-word;
}
.toptop select {
    padding: 5px;
    border-radius: 10px;
}
#user_table {
    font-size: 10pt;
}
#user_table tbody tr td {
    vertical-align:middle;
}
#user_table thead tr th {
    font-weight: bolder;
    text-transform: uppercase;
}
/* #user_table thead tr th:first-child, #user_table tbody tr td:first-child {
    width: 25px;
} */
/* ending landing pages */
#datedate {
    cursor: pointer;
    /* background: url('/images/top_bg.png') repeat-x; */
    background-position: bottom;
    display: inline-block;
    width: 325px;
    padding-bottom: 5px;
    text-align: center;
}
.dt-button {
    border: 1px solid #a3a3a3;
    border-radius: 5px;
    color: #474747;
    font-size: 8pt;
}
.datatable {
    font-size: 9pt;
}
.tbl_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: #fff;
    justify-content: space-between;
    width: 100%;
}
.align-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.tbl_left_head {
    display: flex;
    flex-direction:row;
    flex-wrap: nowrap;
  }
  .label {
    display: flex;
    justify-self: flex-start;
  }
  .label_account_name {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .label_icon {
    display: flex;
    padding: 5px 5px 5px 5px;
    margin-right: 5px;
    background-color: #f1f1f1;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #a3a3a3;
  }
  .label_account_name strong {
    display: flex;
    width: 100%;
  }
  .label_account_name span {
    display: flex;
    width: 100%;
    font-size: 8.5pt;
    justify-self: end;
    text-align: right;
  }
  .tbl_right_head {
    justify-self: flex-end;
    font-size: 8.5pt;
    text-transform: uppercase;
  }

/* SWITCH CSS */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type='checkbox'].switch {
        --active: #275EFE;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, 0.3);
        --border: #BBC1E1;
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        width: 38px;
        height: 21px;
        border: 1px solid var(--bc, var(--border));
        border-radius: 11px;
        background: var(--b, var(--background));
        cursor: pointer;
        position: relative;
        display: inline-block;
        vertical-align: top;
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
        outline: none;
    }

    input[type='checkbox'].switch::after {
        content: '';
        position: absolute;
        left: 2px;
        top: 2px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: var(--ab, var(--border));
        transform: translateX(var(--x, 0));
        transition: transform 0.3s ease, background 0.3s ease;
    }

    input[type='checkbox'].switch:checked {
        --b: var(--active);
        --bc: var(--active);
        --ab: var(--active-inner);
        --x: 17px;
    }

    input[type='checkbox'].switch:focus {
        box-shadow: 0 0 0 var(--focus);
    }

    input[type='checkbox'].switch:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }

    input[type='checkbox'].switch:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }

    input[type='checkbox'].switch:disabled:not(:checked)::after {
        opacity: 0.6;
    }
    /* input[type='checkbox'].switch {
        width: 19px; 
        height: 10.5px; 
        border-radius: 5.5px; 
    }
    
    input[type='checkbox'].switch::after {
        left: 1px; 
        top: 0.5px; 
        width: 7.5px; 
        height: 7.5px; 
    }
    
    input[type='checkbox'].switch:checked {
        --x: 8.5px;
    } */
}
