/*

body {
	font-family: "Nunito", sans-serif;
	background-color: #fafafa;
}
*/
p {
    margin: 0;
}

label {
    margin: 0;
}

.box {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

/*.header {
	padding: 10px 20px;
	background: #fff;
	box-shadow: 0 0 4px -2px rgba(0,0,0,.44);
	z-index: 9999;
	position: relative;
	border-radius: 0 0 5px 5px;
}*/

.header nav .navbar-brand img {
    max-height: 40px;
}

/*.sidenav {
	position: relative;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0 0 4px -2px rgba(0,0,0,.44);
	overflow-x: hidden;
	margin-top: 30px;
	border-radius: 5px;
	height: 100vh;
}*/

.sidenav a {
    margin: 0 0 30px 0;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
}

.header {
    padding: 14px 20px;
    background: #fff;
    border: 1px solid #e3e5e6;
    box-shadow: 0 0 4px -2px rgba(0, 0, 0, 0.44);
    z-index: 10;
    position: fixed;
    width: 100%;
    border-radius: 0 0 5px 5px;
}

.sidenav {
    position: fixed;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 4px -2px rgba(0, 0, 0, 0.44);
    overflow-x: hidden;
    margin-top: 100px;
    border-radius: 5px;
    width: 320px;
    height: 100vh;
    padding: 20px 50px 20px 20px;
}

.setting_section {
    background-color: #fff;
    box-shadow: 0 0 4px -2px rgba(0, 0, 0, 0.44);
    position: relative;
    overflow: hidden;
    padding: 20px;
    border-radius: 5px;
}

.extension h1 {
    font-size: 1.5rem;
    line-height: normal;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.extension h2 {
    font-size: 1.3rem;
    line-height: normal;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.extension a {
    /* font-size: 1rem;*/
    line-height: normal;
    /*   margin: 6px 0; */
    font-weight: 500;
    color: #4179c5;
    display: inline-block;
}

.extension .form_section {
    width: 90%;
    margin: 30px auto;
}

.extension .form_section label {
    font-size: 1.2rem;
    font-weight: 300;
    color: #0e2749;
}

.extension .form_section .form-group {
    margin-bottom: 5px;
}

.extension .form_section .table .form-group {
    margin: 0;
}

.extension .form_section .form-control {
    border: 2px solid #d8d8d8;
}

.extension .form_section .form-control:focus {
    box-shadow: none;
}

.extension .form_section .switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 30px;
}

.extension .form_section .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.extension .form_section .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.extension .form_section .slider:before {
    position: absolute;
    content: '';
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.extension .form_section input:checked+.slider {
    background-color: #0e2749;
}

.extension .form_section input:focus+.slider {
    box-shadow: 0 0 1px #2196f3;
}

.extension .form_section input:checked+.slider:before {
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
}

.extension .form_section .slider.round {
    border-radius: 34px;
}

.extension .form_section .slider.round:before {
    border-radius: 50%;
}

.extension .form_section .notify_section p {
    font-size: 17px;
    font-weight: 300;
    color: #0e2749;
}

.extension .form_section .notify_section .enablelable {
    font-size: 17px;
    font-weight: 300;
}

.extension .form_section .notify_section .enablereset {
    font-size: 20px;
    font-weight: 300;
}

.extension .form_section .notify_section .checkbox label:after {
    content: '';
    display: table;
    clear: both;
}

.extension .form_section .notify_section .checkbox .checkbox_icon_wrapper,
.checkbox .checkbox_icon_wrapper {
    position: relative;
    display: inline-block;
    border: 2px solid #0e2749;
    border-radius: 6px;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: 0.5em;
}

.extension .form_section .notify_section .enable {
    font-size: 26px;
}

.extension .form_section .notify_section .checkbox .checkbox_icon_wrapper .checkbox_icon,
.checkbox .checkbox_icon_wrapper .checkbox_icon {
    position: absolute;
    font-size: 16px;
    line-height: 0;
    top: 55%;
    left: 25%;
}

.extension .form_section .notify_section .checkbox .enable input[type='checkbox'],
.checkbox .enable input[type='checkbox'] {
    display: none;
}

.extension .form_section .notify_section .checkbox .enable input[type='checkbox']+.checkbox_icon_wrapper>.checkbox_icon,
.checkbox .enable input[type='checkbox']+.checkbox_icon_wrapper>.checkbox_icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all 0.3s ease-in;
}

.extension .form_section .notify_section .checkbox .enable input[type='checkbox']:checked+.checkbox_icon_wrapper>.checkbox_icon,
.checkbox .enable input[type='checkbox']:checked+.checkbox_icon_wrapper>.checkbox_icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.extension .form_section .notify_section .checkbox .enable input[type='checkbox']:disabled+.checkbox_icon_wrapper,
.checkbox .enable input[type='checkbox']:disabled+.checkbox_icon_wrapper {
    opacity: 0.5;
}

.extension .form_section .notify_section .table .form-control {
    padding: 5px;
    font-size: 14px;
}

.extension .form_section .notify_section .table td,
.table th {
    padding: 5px;
    font-size: 14px;
    border: none;
}

.extension .form_section .notify_section .table thead th {
    border: none;
}

.btn-outline-danger.focus,
.btn-outline-danger:focus {
    box-shadow: none;
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
    box-shadow: none;
}

.btn-outline-danger {
    color: #ff6f6f;
    border: 2px solid #ff6f6f;
    font-weight: 600;
}

.btn-outline-danger:hover {
    background-color: #ff6f6f;
    border: 2px solid #ff6f6f;
}

.btn-outline-primary {
    color: #0e2749;
    border: 2px solid #0e2749;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: #0e2749;
    border: 2px solid #0e2749;
}

.bootstrap-tagsinput {
    width: 100%;
    height: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #d8d8d8;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.bootstrap-tagsinput input {
    border: none;
    box-shadow: none;
    outline: none;
    background-color: transparent;
    padding: 0 6px;
    margin: 0;
    width: auto;
    max-width: inherit;
}

.bootstrap-tagsinput.form-control input::-moz-placeholder {
    color: #777;
    opacity: 1;
}

.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
    color: #777;
}

.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
    color: #777;
}

.bootstrap-tagsinput input:focus {
    border: none;
    box-shadow: none;
}

.bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: #0e2749;
    background-color: #f5f5f5;
    padding: 0px 5px;
    border-radius: 2px;
}

.bootstrap-tagsinput .tag [data-role='remove'] {
    margin-left: 8px;
    cursor: pointer;
}

.bootstrap-tagsinput .tag [data-role='remove']:after {
    content: 'x';
    padding: 0px 2px;
    color: #f44336;
}

.bootstrap-tagsinput .tag [data-role='remove']:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.05);
}

.bootstrap-tagsinput .tag [data-role='remove']:hover:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.control_section input[type='radio']:focus {
    outline-offset: 0;
}

.control_section .radio {
    cursor: pointer;
}

.control_section .radio label {
    cursor: pointer;
    position: relative;
    padding-left: 15px;
    font-size: 18px;
}

.control_section .radio label::before {
    margin-top: 4px;
    content: '';
    display: inline-block;
    position: absolute;
    width: 22px;
    height: 22px;
    left: 0;
    margin-left: -20px;
    border: 2px solid #9d9d9d;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}

.control_section .radio label::after {
    margin-top: 4px;
    display: inline-block;
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    left: 6px;
    top: 6px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #0e2749;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.control_section .radio input[type='radio'] {
    opacity: 0;
}

.control_section .radio input[type='radio']:checked+label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.control_section .radio input[type='radio']:disabled+label {
    opacity: 0.65;
}

.control_section .radio input[type='radio']:disabled+label::before {
    cursor: not-allowed;
}

.control_section .radio.radio-inline {
    display: inline-block;
}

.extension .btn-save {
    width: 200px;
}

.extension .btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #0e2749;
    border-color: #0e2749;
}

.extension .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.extension .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-danger.dropdown-toggle:focus {
    box-shadow: none;
}

.extension .btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show>.btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #ff6f6f;
    border-color: #ff6f6f;
}

.extension .nav-tabs {
    border: unset;
}

.extension .nav-tabs .nav-item {
    margin-right: 15px;
    margin-bottom: 0;
}

.extension .nav-tabs .nav-link {
    border: unset;
    border-radius: 5px;
    color: #0e2749;
    background-color: #e7e7e7;
}

.extension .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #0e2749;
    border: unset;
}

.extension .tab-pane {
    padding: 0;
}

.disabled_view {
    opacity: 0.5;
}

@media (min-width: 1493px) {
    .box {
        margin: 0 auto;
    }

    .header {
        padding: 14px 20px;
        background: #fff;
        box-shadow: 0 0 4px -2px rgba(0, 0, 0, 0.44);
        z-index: 9999;
        position: fixed;
        border-radius: 0 0 5px 5px;
    }

    .sidenav {
        position: fixed;
        overflow: hidden;
        background-color: #fff;
        box-shadow: 0 0 4px -2px rgba(0, 0, 0, 0.44);
        overflow-x: hidden;
        margin-top: 100px;
        border-radius: 5px;
        width: 280px;
        height: 100vh;
        padding: 20px 50px 20px 20px;
    }
}

body {
    font-family: 'Nunito';
    background-color: #f4f6fb;
}

.container-box {
    width: 90%;
    margin: 0 auto;
}

section {
    padding: 20px 0 0 0;
    position: relative;
    width: 100%;
}

body#reports section {
    padding: 20px 0 0 0 !important;
    position: relative;
    width: 100%;
}

body#reports header {
    padding: 0 !important;
}

.header {
    background-color: #fff;
    position: relative;
    border-radius: 5px;
    padding: 14px 20px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    margin: 20px auto 0;
}

.header .navbar {
    padding: 0;
}

.header .navbar-light .navbar-nav .nav-link {
    color: #0e2749;
    font-size: 16px;
    font-weight: 700;
    margin-right: 10px;
}

.header .navbar-light .navbar-nav .nav-link:last-child {
    display: flex;
    /* justify-content: space-between; */
    width: 110px;
}

/*
.header .navbar-light .navbar-nav .nav-link .active { border-bottom: 2px solid #F89939;  }
*/
.filter-sec {
    padding: 25px;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.filter-sec .form-group {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.filter-sec label {
    font-size: 13px;
    font-weight: 700;
}

.filter-sec .form-icon {
    position: absolute;
    top: 6px;
    right: 10px;
}

.filter-sec .form-control {
    border: 2px solid #e0e0e0;
}

.filter-sec .input-group .input-group-text {
    padding: 5px;
    background-color: #fafafa;
    border: 2px solid #e0e0e0;
}

.call_stats_parent {}

.tiles-row {
    margin-bottom: 2px;
}

.tiles-sec {
    display: inline-flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;
    padding: 7px 0px;
    transition: width 1s ease;
    border-radius: 5px;
    border: 1px solid #e3e5e6;
    background-color: rgb(255, 255, 255);
}

.tbody-white tr.tr-border {
    outline: 1px solid #e3e5e6;
    border-radius: 5px;
}

.tbody-white tr.tr-border td:first-child {
    border-left: 1px solid #e3e5e6;
    border-radius: 5px;
}

.tbody-white tr.tr-border td:last-child {
    border-right: 1px solid #e3e5e6;
    border-radius: 5px;
}

.tiles-sec.tiles-sec-1 {
    width: 25%;
}

.tiles-sec.tiles-sec-3 {
    width: calc(75% - 3px);
}

.tiles-sec .p-2 {
    padding: 0 !important;
    text-align: center;
    width: 100%;
    margin: 5px 0px;
}

.tiles-sec .p-2.item-2 {
    width: 40%;
    border: 2px solid #ffdfd4;
}

.tiles-sec .p-2 .text {
    font-size: 14px;
    font-weight: 500;
    /* margin: 0px 0px 8px; */
    color: #0e2749;
}

.tiles-sec .p-2 .number {
    font-size: 16px;
    font-weight: 500;
    margin: 0px 5px;
    line-height: 1;
}

.tiles-sec .total .number {
    color: #0e2749;
}

.tiles-sec .live .number {
    color: #147b39;
}

.tiles-sec .talking .number {
    color: #147b39;
}

.tiles-sec .holding .number {
    color: rgb(232, 156, 77);
}

.tiles-sec .waiting .number {
    color: rgb(217, 23, 30);
}

.tiles-sec .incoming .number {
    color: #4978b1;
}

.tiles-sec .outgoing .number {
    color: rgb(107, 176, 206);
}

.tiles-sec .unanswered .number {
    color: #e0151b;
}

.tiles-sec .voicemail .number {
    color: rgb(154, 167, 174);
}

.tiles-sec .unreturned .number {
    color: rgb(154, 167, 174);
}

.tiles-sec .unavailable .number {
    color: rgb(154, 167, 174);
}

.tiles-sec .held .number {
    color: rgb(154, 167, 174);
}

.tiles-sec .border-left {
    border-left: 2px solid #e0e0e0 !important;
}

.chart-sec {
    padding: 25px 25px 1px;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.chart-sec .inline-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.chart-sec h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.chart-sec .form-control {
    border: 2px solid #e0e0e0;
}

.table-sec {
    padding: 25px;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.table-sec .inline-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.table-sec h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.table-sec .form-control {
    border: 2px solid #e0e0e0;
}

.table-sec .outer-table {
    border-collapse: separate;
    border-spacing: 0 15px;
}

.table-sec .table .thead-dark th {
    background: #fafafa;
    border: 0;
    color: #4b4b4b;
}

.table-sec .table .tbody-light td {
    border: 0;
    color: #4b4b4b;
}

.table-sec .table .tbody-light .tr-border {
    border: 1px solid rgb(246, 246, 246);
    color: #4b4b4b;
}

/*.table-sec .table .tbody-light .outer-box:hover { background: #fafafa; cursor: pointer; }*/
.table-sec .table .thead-white th {
    background: rgb(255, 255, 255);
    border-bottom: 0px;
}

.table-sec.white {
    box-shadow: none;
    padding: 0px;
}

.table-sec .table .tbody-light td {
    background: rgb(250, 250, 250);
}

.table-sec .table .tbody-white td {
    background: rgb(255, 255, 255);
}

.table-sec .outer-table {
    border-collapse: separate;
    border-spacing: 0 3px;
}

.table-sec .outer-table .tbody-white {
    position: relative;
    top: -4px;
}

.table-sec .inner-table {
    margin-bottom: 0;
}

.table-sec .inner-table .tbody-light tr {
    border-bottom: 1px solid #f6f6f6;
    color: #4b4b4b;
}

.table-sec .inner-table .tbody-light tr:last-child {
    border-bottom: 0;
}

.table-sec .inner-table .tbody-light tr td {
    background: #fff;
    border: 0;
    color: #4b4b4b;
}

.table-sec .inner-table .tbody-light .border-line {
    border-left: 2px solid #f8f8f8;
    height: 120px;
}

.icon_x_default {
    width: 20px;
    height: 20px;
}

.icon_x_default:before {
    content: '<svg id="x_icon" data-name="X Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 98.03 98.03"><path d="M55.66,50,98.34,7.32a2.31,2.31,0,0,0,0-3.26l-2.4-2.4a2.31,2.31,0,0,0-3.26,0L50,44.34,7.32,1.66a2.31,2.31,0,0,0-3.26,0l-2.4,2.4a2.31,2.31,0,0,0,0,3.26L44.34,50,1.66,92.68a2.31,2.31,0,0,0,0,3.26l2.4,2.4a2.31,2.31,0,0,0,3.26,0L50,55.66,92.68,98.34a2.31,2.31,0,0,0,3.26,0l2.4-2.4a2.31,2.31,0,0,0,0-3.26Z" transform="translate(-0.99 -0.99)"/></svg>';
}

.navbar-nav {
    width: 130px;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    border-color: rgba(0, 0, 0, .1);
}

.navbar-expand-lg .navbar-nav {
    width: unset;
    border: unset;
}

.navbar-expand-lg .navbar-nav .icon_menu_default {
    float: unset;
}

body {
    transform: unset !important;
}

.alternative_number_table {
    width: 500px;
}

.extension .form_section .alternative_number_main {
    border: none !important;
    width: 359px;
}

.custom_calling_number {
    max-width: 153px;
}

.header-toggler-closed img {
    transform: rotate(90deg);
}

.header-toggler-opened img {
    transform: rotate(270deg);
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
}

.form-control {
    padding-right: 35px;
    /* Space for the icon */
}

.toggle-password {
    position: absolute;
    right: 22px;
    cursor: pointer;
}
