body,
html {
    background-color: #f7f7f7;
    overflow-y: hidden;
}

.auth-form {
    width: 400px;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px 45px;
    float: left;
    border: solid .1px #eee;
}

.pbc {
    background-color: #cc0000;
    color: #fff !important;
}

.pc {
    color: #cc0000 !important;
}

.auth-logo {
    width: 250px;
    margin: 0;
}

.form-control {
    width: 100%;
    border: none;
    border-radius: 0;
    outline: none !important;
    background-color: transparent !important;
}

.form-control:focus {
    outline: none !important;
    box-shadow: none;
}

.input-group i {
    color: #cc0000;
}

.d-flex-left {
    display: flex;
    align-items: center;
    justify-content: left;
}

.mr-2 {
    margin-right: 20px;
}

.mr-1 {
    margin-right: 10px;
}

.mr-3 {
    margin-right: 30px;
}

.d-flex-center-left {
    display: flex;
    align-items: center;
}

.std-btn {
    width: 100%;
    height: 50px;
    display: block;
    float: left;
    display: flex;
    align-items: center;
    padding: 0 25px;
    border-radius: 4px;
    margin-top: 2px;
    justify-content: space-between;
    opacity: .8;
    text-decoration: none !important;
}

.std-btn:hover {
    opacity: 1;
    color: #cc0000;
}

.space-between {
    display: flex;
    justify-content: space-between;
}

.std-btn.primary {
    background-color: #cc0000;
    color: #fff;
}

.std-btn.danger {
    background-color: #cc0000;
    color: #fff;
}

.btn-link {
    color: #cc0000;
    text-decoration: none !important;
}

h5 {
    font-weight: 400;
}

.std-btn.default {
    background-color: #eee;
    color: #000;
    border: solid .1px #ddd;
}

.std-btn.default:hover {
    color: #cc0000;
}

.std-btn.orange {
    background-color: #ca0436;
    color: #fff;
}

.content-center {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-navigation {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    border-right: solid .1px #eee;
    z-index: 1000;
    transition: all .3s ease-in-out;
}

.side-navigation.collapsed:hover:before {
    content: '';
    position: absolute;
    width: 200px;
    height: 100%;
    top: 60px;
    left: calc(100% + 1px);
    background: linear-gradient(to right, #f7f7f7, transparent);
    opacity: .6;
}

#map {
    height: 100vh;
    width: calc(100vw - 250px);
}

#map.expanded {
    width: calc(100vw - 50px);
}

.collapse-btn {
    width: 50px;
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #cc0000;
    color: #fff;
    cursor: pointer;
}

.side-navigation.collapsed .bi-arrow-right-short {
    display: block;
}

.side-navigation.collapsed .bi-arrow-left-short {
    display: none;
}

.side-navigation .bi-arrow-left-short {
    display: block;
}

.side-navigation .bi-arrow-right-short {
    display: none;
}

.side-navigation.collapsed {
    width: 50px;
    transition: all .3s ease-in-out;
}

.side-navigation.collapsed .header>span {
    display: none;
}

.side-navigation .header>img {
    width: 100px;
    margin-left: -10px;
}

.side-navigation.collapsed .header>img {
    width: 40px;
    margin-left: -18px;
}

.side-navigation.collapsed a {
    padding: 0 15px
}

.side-navigation.collapsed a>span {
    display: none;
}

.side-navigation.collapsed .nav-sect {
    display: none;
}

.side-navigation.collapsed a:hover span {
    display: block;
    padding-left: 15px
}

.header {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-bottom: solid .1px #eee;
    /* z-index: 2000; */
    position: relative;
}

.side-navigation a {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    color: #535353;
    padding: 0 25px;
    text-decoration: none;
    position: relative;
}

.side-navigation a:hover {
    color: #cc0000;
}

.bi-three-dots-vertical {
    color: #cc0000;
}

.side-navigation a:hover:before {
    content: '';
    position: absolute;
    width: 2px;
    height: calc(100% - 24px);
    top: 12px;
    right: 0;
    background-color: #cc0000;
}

.side-navigation a.active:before {
    content: '';
    position: absolute;
    width: 2px;
    height: calc(100% - 24px);
    top: 12px;
    right: 0;
    background-color: #cc0000;
}

.side-navigation.collapsed a.active>i {
    color: #cc0000 !important;
}

.side-navigation.collapsed a>i {
    color: #888 !important;
    pointer-events: none;
}

.side-navigation a.active {
    color: #cc0000;
}

.main-dashboard-view {
    width: calc(100% - 250px);
    height: 100vh;
    float: right;
    transition: all .3s ease-in-out;
}

.main-dashboard-view.expanded {
    width: calc(100% - 50px);
    transition: all .3s ease-in-out;
}

#colorPicker {
    width: 20px !important;
    height: 20px !important;
    border-radius: 4px !important;
}

/* .search-form {
    display: flex;
} */
.search-form input {
    border: none;
    outline: none;
    background-color: transparent;
    color: #fff;
}

.search-form input::placeholder {
    color: #fff;
}

.search-form input:focus {
    border: none;
}

.space-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: #eee;
    margin-left: 20px;
}

.right {
    display: flex;
    align-items: center;
    justify-content: right;
    text-align: right;
}

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

.bgw {
    background-color: #fff;
}

.right a i {
    color: #000
}

.nav-sect {
    width: 100%;
    height: 40px;
    font-size: 12px;
    padding: 25px;
    opacity: .6;
}

.row {
    width: 100%;
}

.campaignfiltering-form {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    border: solid .1px #eee;
}

.campaignfiltering-form .form-sect {
    width: calc(30% - 50px);
    padding: 0 20px;
    border-right: solid .1px #eee;
}

.campaignfiltering-form input {
    width: 100%;
    border: none;
}

.campaignfiltering-form input:focus {
    outline: none;
}

.std-padding-x {
    padding: 0 25px;
}

.campaignfiltering-form i.bi-search {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-header div {
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 14px;
    opacity: .6;
    float: left;
    width: 12.5%;
}

.list-item {
    width: 100% !important;
    height: 50px;
    display: flex;
    align-items: center !important;
    float: left;
    color: #666;
}

.list-item p {
    padding: 0 !important;
}

.list-item.no-hover {
    width: 100% !important;
    color: #000 !important;
    opacity: 1 !important;
}

p {
    margin: 0 !important;
}

.list-item:hover {
    color: #000;
    cursor: pointer;
}

.text14 {
    font-size: 14px;
}

.list-item div {
    width: 12.5%;
    padding: 0 20px;
    float: left;
    /* border-right: solid .1px #ddd; */
}

.list.shade>.list-item:nth-of-type(even) {
    background: #f3f3f3;
    border: solid .1px #f1f1f1;
}

.scrollview>.list-item:nth-of-type(odd) {
    background: #eee;
}

.scrollview::-webkit-scrollbar {
    width: 0;
}

.input-group {
    border: solid .1px #eee;
    padding: 0 20px 0 0;
    border-radius: 4px;
}

.input-group input {
    padding: 10px 20px;
    width: 100%;
    border: none;
    /* background-color: transparent; */
}

.input-group select {
    padding: 10px 20px;
    width: 100%;
    border: none;
    background-color: transparent;
}

.input-group textarea {
    padding: 10px 20px;
    width: 100%;
    border: none;
    background-color: transparent;
}

label {
    margin: 15px 0 10px 0;
}

h6 {
    opacity: .6;
}

.d-flex {
    display: flex;
}

.f-right {
    float: right;
}

.std-btn-sm {
    border: solid .1px #ddd;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 13px;
    color: #000;
    background: #ddd;
    margin-left: 10px;
    float: right;
}

.std-btn-sm:hover {
    background-color: #cc0000;
    color: #fff;
    border: solid .1px #cc0000;
}

.modal-wrapper {
    width: 100%;
    height: 100%;
    background-color: rgba(000, 000, 000, .5);
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 3000;
}

.modal-wrapper.active {
    display: flex;
}

.modal-wrapper .body {
    background-color: #f9f9f9;
    border-radius: 10px;
    display: none;
    transition: all .3s ease-in-out;
    max-height: 100%;
    overflow-y: scroll;
}

.filter-modal-wrapper {
    width: 100%;
    height: 100%;
    background-color: rgba(000, 000, 000, .5);
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 3000;
}

.filter-modal-wrapper.active {
    display: flex;
}

.filter-modal-wrapper .body {
    background-color: #f9f9f9;
    border-radius: 10px;
    display: none;
    transition: all .3s ease-in-out;
    max-height: 100%;
}

.modal-side-nav {
    width: 250px;
    height: 400px;
    /* background-color: #f9f9f9; */
    border-right: solid .1px #eee;
}

.modal-link {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center!important;
    list-style: none;
    padding: 0 20px;
    font-size: 14px;
    opacity: .6;
}

.modal-link:hover {
    cursor: pointer;
    opacity: 1;
}

.modal-link.active {
    opacity: 1;
    color: #cc0000;
}
.modal-link.selected {
    opacity: 1;
    color: #cc0000;
}
.modal-link.temp-active {
    opacity: 1;
    color: #cc0000;
}

.modal-link:last-child {
    border-bottom: none;
}

.modal-side-nav-body {
    width: calc(100% - 250px);
}

.modal-footer {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-top: solid .1px #eee;
}


.modal-wrapper .body::-webkit-scrollbar {
    width: 0;
}

.modal-wrapper .body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-wrapper .body::-webkit-scrollbar-thumb {
    background: #888;
}

.modal-wrapper .body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.modal-wrapper .body.active {
    display: block;
}

.modal-wrapper .body::-webkit-scrollbar {
    width: 0;
}

.filter-modal-wrapper .body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.filter-modal-wrapper .body::-webkit-scrollbar-thumb {
    background: #888;
}

.filter-modal-wrapper .body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.filter-modal-wrapper .body.active {
    display: block;
}

.modal-wrapper .body p {
    padding: 20px 20px 0 20px;
    text-align: center;
    opacity: .8;
}

.modal-header {
    width: 100%;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
}

.modal-sect {
    display: none;
}

.modal-sect.active {
    display: block;
}

.bb1 {
    border-bottom: solid .1px #ddd !important;
}

.bb1:last-child {
    border-bottom: none !important;
}

.bb-1 {
    border-bottom: solid .1px #eee !important;
}

.ml-1 {
    margin-left: 10px;
}

.ml-2 {
    margin-left: 20px;
}

.ml-3 {
    margin-left: 30px;
}

.agent-color {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-left: 20px;
}

.btns {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 20px 20px;
}

.btns .std-btn {
    justify-content: center;
    border-radius: 0;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

.btns .std-btn:first-child {
    border-radius: 5px 0 0 5px;
}

.btns .std-btn:last-child {
    border-radius: 0 5px 5px 0;
}

.content-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-card {
    padding: 30px;
    border-radius: 10px;
    border: solid .1px #ddd;
}

.ui-card-header {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
}

.message {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
}

/* WebKit browsers (Chrome, Safari) */
.message::-webkit-scrollbar {
    height: 2px;
}

.message::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.message::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.message::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Firefox */
.message {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

p span {
    opacity: .6;
}

.scrollview {
    height: calc(100vh - 245px);
    overflow-y: scroll;
}

#ussdCustomCode,
#whatsappCustomCode {
    display: none;
}

.overview-card {
    width: 100%;
    height: auto;
    border-bottom: solid .1px #eee;
    padding: 25px 0;
    display: flex;
    align-items: center;
}

.overview-card-insight {
    width: 100%;
    padding: 30px;
    height: auto;
    border-left: solid .1px #eee;
}

.op6 {
    opacity: .6 !important;
}

.body input {
    background-color: transparent !important;
}

.drop-down-opts-btn {
    position: relative;
}

.drop-down-opts-btn .drop-down-opts {
    width: 200px;
    position: absolute;
    top: calc(100% + 5px);
    background-color: #fff;
    z-index: 3000;
    float: left;
    right: 0;
    color: #000;
    display: none;
    padding: 0 5px;
    border-radius: 6px;
    border: solid .1px #ddd;
}

.bi-sliders {
    cursor: pointer;
}

.btn-default {
    border: solid 1px #ccc !important;
}

.drop-down-opts-btn .drop-down-opts:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 50px;
    right: 0;
    bottom: 100%;
}

/* .drop-down-opts-btn .drop-down-opts:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 300px;
    right: 0;
    top: 100%;
} */
.drop-down-opts input {
    outline: none;
    border: none;
}

.drop-down-opts-btn:hover .drop-down-opts {
    display: block;
}

.drop-down-opts li {
    width: 100%;
    display: block;
    height: 40px;
    display: flex;
    align-items: center;
    float: left;
    list-style: none;
    padding: 0 15px 0 15px;
    justify-content: space-between;
    border-bottom: solid .1px #eee;
    color: #666;
    font-size: 12px;
}

.drop-down-opts a {
    width: 100%;
    display: block;
    height: 40px;
    display: flex;
    align-items: center;
    float: left;
    list-style: none;
    padding: 0 15px 0 15px;
    justify-content: space-between;
    border-bottom: solid .1px #eee;
    color: #666;
    font-size: 12px;
    text-decoration: none;
}

.drop-down-opts li:last-child {
    border-bottom: none;
}

.drop-down-opts li:hover {
    color: #000;
    cursor: pointer;
}

.drop-down-opts a:hover {
    color: #000;
    cursor: pointer;
}

.std-padding {
    padding: 20px 5px;
}

.d-flex {
    display: flex;
}

.op6 {
    opacity: .6;
}

.br1 {
    border-right: solid .1px #ddd;
}

.std-padding-x {
    padding: 0 25px;
}

.br1 {
    border-right: solid .1px #eee;
}

.bt1 {
    border-top: solid .1px #eee;
}

.std-btn-sm.default {
    background-color: transparent;
}

.std-btn-sm.default:hover {
    color: #000;
    border: solid .1px #ccc;
}

.shade {
    background: #fff;
}

#ussdShortcodeValue input {
    border: none;
    background-color: transparent !important;
    padding: 10px 20px;
    outline: none;
}

#ussdShortcodeValue input {
    border: none;
}

#whatsappShortcodeValue {
    border: none;
    background-color: transparent !important;
    outline: none;
}

#whatsappShortcodeValue input {
    border: none;
    background-color: transparent !important;
    padding: 10px 20px;
    outline: none;
}

.error {
    color: #cc0000;
    font-size: 12px;
    padding: 2px 5px;
    opacity: .6;
}

input.error {
    border: solid .1px #cc0000;
}

.ajax-error-page {
    width: 100%;
    height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ajax-view {
    position: relative;
}

select {
    border: none;
    background-color: transparent !important;
    padding: 10px 20px;
    outline: none;
    height: 50px !important;
}

select:focus {
    outline: none !important;
    border: none !important;
}

.filter select {
    display: none;
}

.filter i {
    float: left;
}

.locations-data {
    display: relative !important;
}

.locations-data .location-contacts {
    /* width: 200px; */
    height: auto;
    visibility: hidden;
    padding: 20px 0 20px 20px;
    position: absolute;
    background-color: #fff;
    top: -50%;
    left: 100px;
    border-radius: 6px;
    box-shadow: 0 0 5px #eee;
    border: solid .1px #eee;
    z-index: 3000;
}

.locations-data:hover .location-contacts {
    visibility: visible;
}

.locations-data .location-contacts-arrow {
    display: none;
}

.locations-data:hover .location-contacts-arrow {
    display: block;
}

.locations-data .location-contacts-arrow {
    position: absolute;
    content: '';
    border-left: solid 10px transparent;
    border-right: solid 10px #fff;
    border-bottom: solid 10px transparent;
    border-top: solid 10px transparent;
    top: 22px;
    left: 81px;
    z-index: 1000;
}

.location-contacts .contact {
    width: 100%;
    padding: 10px;
    border-bottom: dotted .1px #eee;
}

.location-contacts .contact:last-child {
    border-bottom: none !important;
}

.location-contacts .contact:first-child {
    padding-top: 0 !important;
}

#location-search-results {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    z-index: 1000;
    box-shadow: 0 0 5px #eee;
    display: none;
}

#location-search-results p {
    width: 100%;
    font-size: 12px !important;
    float: left !important;
    opacity: .6;
    padding: 5px 0 !important;
}

#location-search-results p:hover {
    cursor: pointer;
    opacity: 1;
}




/* matcha */
.camp-container {
    padding: 25px;
}

.ui-input {
    width: 100%;
    background-color: #fff;
    border: solid .1px #eee !important;
    padding: 10px 20px;
}

.form-sect {
    display: none !important;
}

.form-sect.active {
    display: block !important;
}

.form-sect.active-flex {
    display: flex !important;
}

table {
    width: 100%;
    padding: 20px;
}

th {
    padding: 15px 20px;
    text-transform: uppercase;
    font-size: 14px;
}

table tr td {
    padding: 15px 20px;
    cursor: pointer;
}

th {
    color: #000
}

tr {
    padding: 15px 20px;
    cursor: pointer !important;
    color: rgba(000, 000, 000, .8);
}

td input {
    width: 100px !important;
    border: none;
    outline: none;
}

td:first-child input {
    width: 150px !important;
}

tr:hover {
    color: rgba(000, 000, 000, 1);
}

tr.link:hover {
    color: #007bff;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.input::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    opacity: 0.8;
}

input::-moz-placeholder {
    /* Firefox 19+ */
    opacity: 0.8;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    opacity: 0.8;
}

input::-ms-input-placeholder {
    /* Microsoft Edge */
    opacity: 0.8;
}

input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    opacity: 0.8;
}

td span {
    /* padding: 20px!important; */
    display: block;
    font-size: 10px;
}

.ui-tag {
    border: solid .1px #ddd;
    padding: 5px 10px !important;
    border-radius: 20px;
    float: left;
    margin-left: 5px;
    list-style: none;
    font-size: 12px;
}

.search-loading {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(000, 000, 000, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.page-item.active .page-link {
    background-color: #000 !important;
    color: rgba(225, 225, 225, 1);
}

.page-item .page-link {
    color: #999;
    border: solid .25px rgba(000, 000, 000, 1);
    background-color: #000;
}

.form-wrapper {
    width: 400px;
    display: block;
}

.modal-form {
    padding: 10px 30px;
}

#locationsResults {
    position: absolute;
    bottom: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-radius: 4px;
    border: solid .1px #eee;
    box-shadow: 0 0 5px #eee;
}

#locationsResults p {
    width: 100%;
    padding: 10px;
    text-align: left;
    font-size: 12px;
    border-bottom: solid .1px #eee;
}

#locationsResults p:hover {
    background-color: #f7f7f7;
    cursor: pointer;
}

label {
    opacity: .5;
    font-size: 12px;
}

.listItem {
    padding: 10px 0;
    border-bottom: dotted .1px #ddd;
}

.listItem:last-child {
    border-bottom: none;
}

.listItem small {
    opacity: .5;
    text-transform: uppercase;
    font-size: 12px;
}

.add-btn {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

.map-search {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#successMsg {
    width: 100%;
    padding: 20px 30px;
    text-align: center;
}

.hidden {
    display: none !important;
}

.view-contact {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000 !important;
}

.view-contact:hover {
    background-color: #cc0000;
}

.view-contact:hover i {
    color: #fff;
}

#regions-display,
#markers-display {
    display: none;
}

#regions-display.active,
#markers-display.active {
    display: block;
}

#maploading {
    width: 100vw;
    height: 100vh;
    background-color: rgba(000, 000, 000, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    display: none;
}

.multy-select {
    padding: 0;
    font-size: 15px;
    height: 400px !important;
    width: 100% !important;
    display: none;
}
.multy-select.active {
    display: block!important;
    opacity: 1;
}

.multy-select option {
    padding: 10px 20px;
    height: 40px !important;
    display: flex;
    align-items: center;
    font-size: 14px;
    border-bottom: solid .1px #eee;
    opacity: .6;
}

.multy-select option:hover {
    background-color: #f1f1f1;
    opacity: 1;
}
.multy-select option:checked {
    opacity: 1;
    border-bottom: .1px solid rgba(255, 255, 255, 0.2);
}

.multy-select:focus {
    border-color: #cc0000;
    border-color: #cc0000;
    box-shadow: #cc0000;
    outline: none;
    opacity: 1;
}