:root{
  --bs-gradient: linear-gradient(89.83deg, #4E2CBE 0.15%, #A36BE2 99.04%);
  --bs-purple-text-color: hsl(254, 61%, 47%);
  --bs-light-text-color: #9197B3;
  --bs-dark-text-color: #292d32;
  --bs-button: #8756D6;
  --bs-button-border: #B6ABED;
  --bs-active-button: #16c09861;
  --bs-active-button-border: #00b087;
  --bs-active-button-text: #008767;
  --bs-inactive-button: #ffc5c5;
  --bs-inactive-button-border: #df0404;
  --bs-inactive-button-text: #df0404;
  --bs-sidebar-li-active: linear-gradient(89.83deg, rgba(78, 44, 190, 0.18) 0.15%, rgba(163, 107, 226, 0.18) 99.04%);
  --bs-unassigned-button: #FF0000;
  --bs-unassigned-button-border: #ffc1c1ca;
  --bs-shadow: 0px 0px 20px rgba(172, 197, 229, 0.5);
  --bs-pageboxshadow: 0px 10px 60px rgba(226, 236, 249, 0.5);
  --bs-pageboxradius: 25px;
}
*{
  padding: 0;
  margin: 0;
}
a{
  text-decoration: none;
}
.fw-600{
  font-weight: 600;
}

/*  */
.disabledByMe{
  pointer-events: none;
}

.swal-button--confirm {
  background-color: var(--bs-button) !important;
  border: 1px solid var(--bs-shadow) !important;
}
.swal-title{
  font-size: 14px !important;
}

/* Remove arrow input in Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrow input in Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Text */
.text-gradient{
  color: var(--bs-purple-text-color);
}
.text-light-text{
  color: var(--bs-light-text-color);
}

/* Cursor */
.cursor{
  cursor: pointer;
}

/* hover */
.hover:hover{
  background: var(--bs-sidebar-li-active);
  transition: ease-in-out 0.3s;
}

/* Shadow */
.box-shadow{
  box-shadow: var(--bs-shadow);
}

/* Border */
.border-purple{
  border-color: 2px solid #4E2CBE;
}
.border-gradient{
  border-right: 3px dashed #4E2CBE;
  border-bottom: 3px dashed #7d66c9;
  border-left: 3px dashed #b579f9;
  border-radius: 0px 0px 10px 10px;
}

/* Backgrounds */
.bg-gradient{
  background-color: var(--bs-gradient);
}
.bg-active-li{
  background: var(--bs-sidebar-li-active);
  color: var(--bs-purple-text-color);
}

/* Buttons */
/*  */
.butt{
  background: var(--bs-button);
  border: 3px solid var(--bs-button-border);
  border-radius: 8px;
  padding: 7px 25px;
  color: #fff;
  font-size: 12px;
}
.butt-green{
  background: var(--bs-active-button);
  border: 3px solid var(--bs-active-button-border);
  border-radius: 8px;
  padding: 7px 25px;
  color: #008767;
}
.butt-green:hover{
  color: #008767;
}
.butt-red{
  font-size: 12px;
  background: var(--bs-unassigned-button);
  border: 3px solid var(--bs-unassigned-button-border);
  border-radius: 8px;
  padding: 7px 25px;
  color: #fff;
}
.butt-red:hover{
  color: #fff;
}
.butt-red-2{
  background: var(--bs-inactive-button);
  border: 3px solid var(--bs-inactive-button-border);
  border-radius: 8px;
  padding: 7px 25px;
  color: #df0404;
}
.butt-red-2:hover{
  color: #df0404;
}
.butt-b{
  width: 200px;
}
.butt-a{
  width: 200px;
}

/* Toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background: var(--bs-gradient);
}

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

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

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

/*       Authentication Pages */

/* Sign up */
/* Form part */
#authentication-content-wrapper {
  /* min-width: auto; */
  min-height: 100vh;
  width: calc(100% - 50%);
  position: absolute;
  top: 0;
  left: 50%;
  right: 0px;
  overflow: hidden;
}
.hr:after {
  content: 'Or';
  color: #000;
  display: block;
  text-align: center;
  background-color: #fff;
  width: 60px;
  margin-top: -10px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.form-check-input:checked{
  background-color: #4E2CBE;
  border: 1px solid #4E2CBE;
}

/* Logo part */
#logo-wrapper {
  width: 50%;
  min-height: 100vh;
  -webkit-transition: margin 0.25s ease-out;
  -moz-transition: margin 0.25s ease-out;
  -o-transition: margin 0.25s ease-out;
  transition: margin 0.25s ease-out;
  position: fixed;
  overflow-y: auto;
  background: rgb(83,42,198);
  background: linear-gradient(184deg, rgba(83,42,198,1) 0%, rgba(138,76,190,1) 100%);
}
.logo-holder {
  height: 350px;
  background: rgb(83,42,198);
  background: linear-gradient(284deg, rgba(83,42,198,1) 0%, rgba(138,76,190,1) 100%);
  border-bottom-right-radius: 300px;
  border-bottom-left-radius: 250px;
  border-top-right-radius: 200px;
  border-top-left-radius: 200px;
}
/* End of Sign up */

/*      End of Authentication Pages */


/* Content */
#wrapper {
  /* overflow-x: hidden; */
}

/* Page wrapper */
#page-content-wrapper {
  /* min-width: auto; */
  width: calc(100% - 221px);
  position: absolute;
  top: 0;
  left: 221px;
  right: 0px;
}

@media only screen and (max-width: 1500px) {
  #page-content-wrapper{
    padding: 0 50px;
  }
  .logo-holder {
    height: 300px;
    background: rgb(83,42,198);
    background: linear-gradient(284deg, rgba(83,42,198,1) 0%, rgba(138,76,190,1) 100%);
    border-bottom-right-radius: 300px;
    border-bottom-left-radius: 250px;
    border-top-right-radius: 200px;
    border-top-left-radius: 200px;
  }
  .logo-holder img{
    width: 100px;
  }
  .login h4{
    font-size: 20px;
  }
  .login .google{
    padding: 3px 8px;
    font-size: 14px;
  }
  .login .google img{
    width: 13px;
  }
  .login .facebook img{
    width: 8px;
  }
  .login #email{
    height: 140% !important;
    font-size: 13px !important;
  }
  .login #password{
    height: 120% !important;
    font-size: 12px !important;
    margin-top: 5px !important;
  }
  .login .sign_in{
    padding: 13px 0px !important;
    font-size: 11px !important;
  }
  .sidebar .sidebar-top{
    background-position: bottom;
    height: 90px;
  }
  .sidebar .sidebar-top img{
    width: 100px;
    margin-top: 1.2rem !important;
  }
  .sidebar-center{
    height: calc(100vh - 210px) !important;
  }
  .sidebar-center ul li {
    padding: 3px 5px !important;
  }
  .sidebar-center ul li img{
    width: 20px !important;
  }
  .sidebar-center ul li a {
    font-size: 11px !important;
  }
  .sidebar-bottom{
    height: 120px !important;
  }
  .logout_btn{
    height: 40px !important;
    bottom: 9px !important;
  }
  .logout_btn img:nth-child(1){
    width: 35px !important;
    height: 35px !important;
  }
  .dropdown-container ul li{
    padding: 8px 0px !important;
  }
}

/* Sidebar */
#sidebar-wrapper {
  width: 221px;
  min-height: 100vh;
  -webkit-transition: margin 0.25s ease-out;
  -moz-transition: margin 0.25s ease-out;
  -o-transition: margin 0.25s ease-out;
  transition: margin 0.25s ease-out;
  position: fixed;
  overflow-y: auto;
}
.sidebar{
  width: 100%;
  min-height: 100vh;
}
.sidebar-top{
  /* position: fixed;
  left: 0%;
  right: 0%;
  top: 0%; */
  background-image: url("../img/sidebar-top.png");
  background-repeat: no-repeat;
  /* background-size: cover; */
  height: 104px;
  width: 100%;
}
.sidebar-top img{
  filter: brightness(1000);
}
.sidebar-center{
  width: 100%;
  height: calc(100vh - 250px);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1;
  /* text-align: left; */
}
.sidebar-center ul{
  width: 194px;
  margin: 0px auto;
  padding: 0px;
}
.sidebar-center ul li {
  width: 100%;
  border-radius: 8px;
  /* background: red; */
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.sidebar-center ul li a {
  font-size: 12px;
  max-height: 45px;
  padding: 8px 5px;
  width: 100%;
  text-align: left;
}
.nav-link{
  padding: 0px !important;
  text-align: left;
}


/* sidebar rotate arrow */
.pro-arrow-wrapper {
  position: absolute;
  right: 13px;
  top: 45%;
  transform: translateY(-50%);
}
.pro-arrow-wrapper .pro-arrow {
  display: inline-block;
  border-style: solid;
  color: #d1d4e4;
  border-width: 0px 2px 2px 0px;
  padding: 2.5px;
  vertical-align: middle;
  transition: transform 0.3s ease 0s;
  transform: rotate(-45deg);
}

.sidebar-center::-webkit-scrollbar{
	width:3px;
	border-radius:10px;
	background-color: var(--bs-button-border);
	display:none;
}
.sidebar-center::-webkit-scrollbar-thumbs{
	width:3px;
	border-radius:10px;
	background-color:#000;
	display:none;
}
.sidebar-bottom{
  position: fixed;
  width: 221px;
  height: 140px;
  left: 0px;
  bottom: 0px;
  background-image: url("../img/sidebar-bottom.png");
  background-repeat: no-repeat;
}
.logout_btn{
  position: absolute;
  bottom: 13px;
  left: 0px;
  right: 0px;
  width: 168px;
  height: 45px;
  margin: auto;
  background: #FFFFFF;
  border-radius: 37px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.logout_btn img:nth-child(1){
  width: 37px;
  height: 37px;
}
.logout_btn img:nth-child(2){
  width: 15px;
  height: 15px;
}
.active {
  background: var(--bs-gradient);
}
.sidebar-center ul li.active a img{
  filter: brightness(1000);
}
.sidebar-center ul li.active a span{
  color: white;
  font-weight: bold;
}
.sidebar-center ul li.active .btnn::after{
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
}
.sidebar-center ul li:hover{
  background-color: #d4c8fd;
}


/* Dropdown */
.dropdown-container {
  width: 93%;
  margin: auto;
  display: none;
  border-radius: 0px 0px 8px 8px;
  border: 2px dashed #4E2CBE;
  border-top: none;
  padding: 15px 15px;
}
.dropdown-container ul{
  margin: 0px;
  padding: 0px;
  width: 100%;
}
.dropdown-container ul li{
  border-bottom: 1px solid rgb(201, 189, 189);
  padding: 8px 0px;
}
.dropdown-container ul li a{
  font-size: 12px;
  min-height: 18px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
}
.dropdown-container ul li.Active{
  background: linear-gradient(89.83deg, rgba(78, 44, 190, 0.18) 0.15%, rgba(163, 107, 226, 0.18) 99.04%);
  border-radius: 6px;
}
.dropdown-container ul li:hover{
  background-color: #d4c8fd;
}


/* ------------------------------ PAGE CONTENT ------------------------------ */

/* PAGE HEADER TITLE */
.pageHeaderTop{
  background: #FFFFFF;
  border-radius: 15px;

}
.w-84{
  width: 84px;
}
.h-84{
  height: 84px;
}
/* PAGE HEADER TITLE */


/* DATA TABLE */
/* .table.dataTable thead  */
.table.dataTable thead td {
  color: #B5B7C0;
  font-size: 14px;
  line-height: 21px;
  font-style: normal;
  font-weight: 400 !important;
  min-width: 10000% !important;
}
.dataTables_length select{
  padding: 0.375rem 0.75rem !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: #212529 !important;
  background-clip: padding-box !important;
  border: none!important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
  outline: none !important;
  background: #F9FBFF !important;
  border-radius: 10px !important;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  /* height: 30px; */
  /* border-radius: 10px !important; */
}
#allTable_filter label{
  display: none;
}
.dataTables_filter input{
  display: none;
  width: 200px !important;
  /* height: 25px !important; */
  padding: 0.375rem 0.75rem !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: #212529 !important;
  font-size: 13px !important;
  background-clip: padding-box !important;
  border: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
  outline: none !important;
  background: #F9FBFF !important;
  border-radius: 10px !important;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
} 
table.dataTable tbody tr {
  border-bottom: 1px solid #EEEEEE;
}
table.dataTable thead tr {
  border-bottom: 1px solid #EEEEEE !important;
}
table.dataTable tbody td {
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 21px !important;
  color: #292D32 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current{
  background: linear-gradient(89.83deg, #4E2CBE 0.15%, #A36BE2 99.04%) !important;
  border-radius: 4px !important;
  color: white !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  background: #F5F5F5 !important;
  border: 1px solid #EEEEEE !important;
  border-radius: 5px !important;
  padding: 6px 9px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #404B52 !important;
  font-weight: 500 !important;
}
.dataTables_wrapper .dataTables_paginate {
  margin-top: 15px;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 6px 9px !important;
  gap: 10px !important;
  font-size: 12px;
}
.dataTables_wrapper .dataTables_paginate span{
  display: flex;
}
.dataTables_wrapper .dataTables_info {
  margin-top: 10px;
  font-size: 12px;
}
/* SOLUTION TO dropdown hidden by datatables */
/* .dropdown-menu {   position: fixed !important; } */
/* SOLUTION TO dropdown hidden by datatables */

/* DATA TABLE */


.page-box-content{
  background: #FFFFFF;
  /* box-shadow: var(--bs-pageboxshadow); */
  border-radius: var(--bs-pageboxradius);
}
.page-title{
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
}
.header-form-input{
  background: #F9FBFF;
  border-radius: 10px;
  width: 220.55px;
  height: 38px;
  padding: 0px 10px;
}
.search-input-holder input{
  border: 0px;
  outline: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.select-input-holder select{
  border: 0px;
  outline: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.select-input-holder .sortby{
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #7E7E7E;
}
.cards{
  background: #FAFBFF;
  border-radius: 18px;
  border: 1px solid #4E2CBE !important;
}
.cards-title{
  color: rgba(0, 0, 0, 0.63);
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
}
.cards-subtitle{
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.63);
}
.cards-body .cards-link{
  padding: 5px 16px;
  background: #8756D6;
  border: 3px solid #B6ABED;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
}

/* Table */
table thead tr th{
  font-size: 13px;
}
table tbody tr td{
  font-size: 13px;
}
/* Table */


/* Dialer Modal */
/* --------------------------- CALL CENTER DIALER --------------------------- */
#dialer_input_td{
  border-radius:18px;
  border: 2px solid rgba(60, 0, 255, 0.36);
}
#dialer_input_td input {
  width: 100%;
  border: none;
  font-size: 1em;
  outline: none;
  padding-right: 5px;
}

/* Remove arrows from type number input : Chrome, Safari, Edge, Opera */
#dialer_input_td input::-webkit-outer-spin-button,
#dialer_input_td input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows from type number input : Firefox */
#dialer_input_td input[type=number] {
  -moz-appearance: textfield;
}
/* --------------------------- CALL CENTER DIALER --------------------------- */

/* Range slider */
.irs {
  position: relative; display: block; color: white;
}
.irs-line {
  position: relative; display: block;
  overflow: hidden;
  outline: none !important;
}
.irs-bar {
  position: absolute; display: block;
  left: 0; width: 0;
}
.irs-slider {
  position: absolute; display: block;
  cursor: default;
  z-index: 1;
}
.irs-line {
  height: 10px; top: 34px;
  background: #EEE;
  background: #E1DBF4;
  border: 1px solid #CCC;
  border-radius: 16px;
  -moz-border-radius: 16px;
}
.irs-bar {
  height: 10px; top: 33px;
  border-top: 1px solid #4E2CBE;
  border-bottom: 1px solid #4E2CBE;
  background: #4E2CBE;
  background: linear-gradient(156.24deg, #4E2CBE 0.55%, #A16AE1 99.17%);
}
.irs-slider {
  top: 25px;
  width: 27px; height: 27px;
  border: 2px solid #4E2CBE;
  background: #fff;
  border-radius: 27px;
  -moz-border-radius: 27px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  cursor: pointer;
}
/* End of range slider */


/* Upload Picture */
.Container{
  max-width: 1100px;
  padding: 0 20px;
  margin:0 auto;
}
.panel{
  /* margin: 100px auto 40px; */
  max-width: 500px;
  text-align: center;
}
.button_outer{
  background: var(--bs-sidebar-li-active);
  border-radius: 8px;
  border: 3px solid var(--bs-button);
  text-align: center;
  height: 40px; width: 180px;
  display: inline-block;
  transition: .2s;
  position: relative;
  overflow: hidden;
}
.btn_upload{
  font-size: 12px;
  padding-top: 7px;
  color: var(--bs-purple-text-color);
  text-align: center;
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 3;
  white-space: nowrap;

}
.btn_upload input{
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  width: 100%;
  height: 105%;
  cursor: pointer;
  opacity: 0;

}
.file_uploading{
  width: 100%;
  height: 10px;
  margin-top: 20px;
}
.file_uploading .btn_upload {display: none;

}
.processing_bar{
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 30px;
  background: var(--bs-button);
  transition: 3s;

}
.file_uploading .processing_bar{
  width: 100%;

}
.success_box{
  display: none;
  width: 50px;
  height: 50px;
  position: relative;

}
.success_box:before{
  content: '';
  display: block;
  width: 9px;
  height: 18px;
  border-bottom: 6px solid #fff;
  border-right: 6px solid #fff;
  -webkit-transform:rotate(45deg);
  -moz-transform:rotate(45deg);
  -ms-transform:rotate(45deg);
  transform:rotate(45deg);
  position: absolute;
  left: 17px;
  top: 10px;

}
.file_uploaded .success_box{
  display: inline-block;

}
.file_uploaded{
  margin-top: 0;
  width: 50px;
  background: var(--bs-button);
  height: 50px;

}
.uploaded_file_view{
  max-width: 300px;
  margin: 40px auto;
  text-align: center;
  position: relative;
  transition: .2s;
  opacity: 0;
  border: 1px solid #4E2CBE;
  padding: 15px;
  border-radius: 10px;

}
.file_remove{width: 30px;
  height: 30px;
  border-radius: 50%;
  display: block;
  position: absolute;
  background: #aaa;
  line-height: 30px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  right: -15px;
  top: -15px;

}
.file_remove:hover{
  background: #222;
  transition: .2s;

}
.uploaded_file_view img{
  max-width: 100%;

}
.uploaded_file_view.show{
  opacity: 1;

}
.error_msg {text-align: center;
  color: #f00;
}
/* ------------------------------ PAGE CONTENT ------------------------------ */