/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */
:root {
    --brd-yellow: #FBA92C;
    --brd-dark-yellow: #e69618;
    --brd-dark-grey: #262626;
    --brd-lite-grey: #F4F5FB;
}
body {
    color: #515151;
    box-sizing: content-box;
}
select {
    cursor: pointer;
}
h2 span {
    font-size: 8pt;
}
.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;
}
#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;
} */
.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;
}
.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: #FBA92D;
    color: #fff;
}
.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;
}

.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;

}
.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;
}
.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-right: 2px;
    border: 1px solid #a3a3a3;
    background-color: #eaeaea;
    border-radius: 3px;
}
/*
 * -- 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;
  }
