/*Author: Vijay Pandey*/
/*------------ Global ------------*/
* { margin: 0; padding: 0; }
body { font-family: 'Source Sans Pro', sans-serif; }
.clearfix:before, 
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}
.btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
}
.modalBodyBox {
  padding-bottom: 15px;
  padding-top: 15px;
}
.bg-red{
  background-color: #8e1921 !important;
  color: #fff !important;
}
.bg-red .close{
  color: #fff;
  opacity: 1;
}
.clearfix {
    *zoom: 1;
}
input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: 0;
}
label {
	display: block;
}
label span {
	color: #e84478;
}
.field {
  width: 100%;
  padding: 13px 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  box-sizing: border-box !important;
}
.smallfield {
  width: 100%;
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  box-sizing: border-box !important;
}
.field:focus,
.smallfield:focus {
	outline: 0;
}

.field[disabled], 
.field[readonly] {
	background: #e8e8e8;
}

.submit-btn {
  width: 100%;
  padding: 17px 20px;
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: 17px;
  font-weight: 300;
  border: 0;
  outline: 0;
  font-family: 'Source Sans Pro', sans-serif;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}
.smallBtn {
    font-size: 12px;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    border: 0;
    outline: 0;
    background: linear-gradient(-140deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}
.submit-btn[disabled],
.smallBtn[disabled] {
  background: #ccc;
  pointer-events: none;
}
/*Gradient Animation*/
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*Custom Checkbox*/
.checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}
.checkbox input:checked ~ .checkmark {
  background-color: #23ccb3;
}
.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox input:checked ~ .checkmark:after {
  display: block;
}
.checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 7px;
  height: 13px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*Modal*/
.modal .modal-body {
  background-color: #fff;
  padding: 50px;
  border-radius: 5px;
}
.modal .modalBodyBox h3 {
  font-size: 20px;
  color: #333;
  margin: 0 0 20px 0;
  text-align: left;
}
.modal .modalBodyBox button.close {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 1;
}

/*Header*/
header {
  width: 100%;
  /* padding: 10px 20px 10px 80px; */
  padding: 10px 20px 10px 57px; 
  display: block;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 12;
  border-bottom: 1px solid #d6d6d6;
}
header a.logo {
  display: inline-block;
  vertical-align: top;
  width: 85px;
}

header a.logo img {
  width: 100%;
  height: auto;
}

header a .logoText {
  width: 100% !important;
  text-wrap: nowrap;
}
header .topRight {
  float: right;
  margin-top: 10px;
}
header .topRight .user {
	width: 40px;
	height: 40px;
	display: inline-block;
  vertical-align: top;
	border-radius: 100%;
	overflow: hidden;
}
header .topRight .user img {
	width: 100%;
  height: auto;
}
header .topRight ul {
  margin: 0;
  padding: 4px 0 0 10px;
  display: inline-block;
  vertical-align: top;
}
header .topRight ul li {
  display: block;
  font-size: 12px;
  color: #333;
}
header .topRight ul li a {
  color: #c9302c;
}
header .topRight .top-menu {
  float: left;
  margin-right: 20px;
  margin-top: 5px;
}
header .topRight .top-menu li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0 10px;
  font-size: 14px;
  font-weight: 600;
}
header .topRight .top-menu li i {
  margin-right: 10px;
}
header .topRight .top-menu li a {
  color: #333;
  text-decoration: none;
}
header .topRight .top-menu li ul {
  width: 170px;
  position: absolute;
  top: 45px;
  left: 75px;
  padding: 38px 0 0 0;
  z-index: 1;
  /* opacity: 0;
  visibility: hidden; */
}
header .topRight .top-menu li ul:before {
  content: '';
  width: 0; 
  height: 0; 
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #eaeaea;
  position: absolute;
  top: 23px;
  left: 60px;
}
header .topRight .top-menu li ul li {
  display: block;
  margin: 0;
}
header .topRight .top-menu li ul li a {
  padding: 5px 30px;
  background: #eaeaea;
  display: block;
}
/* header .topRight .top-menu li ul li:first-child a,
header .topRight .top-menu li ul li:last-child a {
  pointer-events: none;
} */
 
header .topRight .top-menu li:hover ul {
  opacity: 1;
  visibility: visible;
}
.hamburger {
  width: 30px;
  height: 30px;
  position: fixed;
  /* top: 18px; */
  top:25px;
  left: 20px;
  z-index: 16;
  border: 0;
  background: none;
  display: block;
}
.hamburger span {
  /* width: 30px; */
  width: 22px;
  height: 2px;
  display: block;
  background: #000;
  /* margin: 8px 0; */
  margin:6px 0;
  transition: all 0.3s ease-in-out;
}

.is-visible .menu-to-cancel{
  width: 30px;
  margin: 8px 0;
}

.hamburger:focus {
  outline: 0;
  border: 0;
}

.hamburger span:first-child {
  transform-origin: 0% 0%;
}

.hamburger span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

.hamburger.is-visible span {
  opacity: 1;
  transform: rotate(45deg) translate(-8px, -2px);
  background: #36383F;
}
.hamburger.is-visible span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.hamburger.is-visible span:nth-last-child(2) {
  transform: rotate(-45deg) translate(-9px, 10px);
}

/*Footer*/
footer {
  width: 100%;
  padding: 20px 0 15px 0;
  display: table;
  background: #e0e0e0;
  margin-top: 30px;
}
footer .column {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
}
footer .column .copyright {
  padding-left: 20px;
  font-size: 12px;
  color: #333;
}
footer .column ul {
  float: right;
  margin: 0;
  padding: 0 20px 0 0;
}
footer .column ul li {
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
}
footer .column ul li a {
  color: #333;
  padding-left: 10px;
}

/*Sidebar Menu*/
aside {
  width: 250px;
  height: 100vh;
  padding: 70px 0px 20px 0px;
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  z-index: 15;
  background: linear-gradient(-85deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  transition: all 0.5s ease-in-out;
}
aside.is-visible {
  left: 0;
  transition: all 0.5s ease-in-out;
}
aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
aside ul li {
  font-size: 14px;
  position: relative;
  color: #fff;
  cursor: context-menu;
}
aside ul li.arrow:after {
  content: '';
  width: 0; 
  height: 0; 
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #fff; 
  position: absolute;
  right: 10px;
  top: 18px;
}
aside ul li i {
  margin-right: 6px;
  font-size: 13px;
}
aside ul li a {
  color: #fff;
  padding: 13px 25px;
  display: block;
}
aside ul li a:hover {
  color: #333;
  background: rgba(255,255,255,0.40);
  text-decoration: none;
}
aside ul li:focus,
aside ul li a:focus {
  outline: 0;
  border: 0;
}
aside ul li ul.child,
aside ul li ul.child li ul.subchild,
aside ul li ul.child li ul.subchild li ul.subchildsub {
  width: 210px;
  position: absolute;
  right: -210px;
  top: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 3px 5px 0 rgba(0,0,0,0.20);
  background: linear-gradient(-85deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  transition: all 0.5s ease-in-out;
}
aside ul li:hover ul.child {
  opacity: 1;
  visibility: visible;
}
aside ul li ul.child li {
  position: relative;
}
aside ul li ul.child li:hover ul.subchild {
  opacity: 1;
  visibility: visible;
}
aside ul li ul.child li ul.subchild li:hover ul.subchildsub {
  opacity: 1;
  visibility: visible;
}

/*css modification*/

button.close.campaign-list-close{
  top: 15px !important;
  right: 27px !important;
}
.date-calender {
  display: flex;
}

.datepicker-.datepicker-div {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  display: flex;
}
 .md-calendar-date.md-calendar-date-disabled {
  color: rgba(0, 0, 0, 0.38) !important;
}

.date-calender button {
  height: 45px;
}
tr.create-tr th {
  font-weight: 600;
  color: #000;
  background: #e8e2e2;
}
/* .create-scroll-table table.table.organisations-table tbody tr {
  text-align: center;
} */
table.table.organisations-table th, table.table.organisations-table td {
  border: 1px solid #ccc;
  padding: 4px 10px;
  text-align: start;
}
form.create-scroll-table {
  max-height: 504px;
  overflow-y: auto;
}

/* .first-table table tbody tr td, .first-table table tbody tr th {
  text-align: center !important;
  width: 15%;
} */
/* css END modification*/

.middle-section {
  /* padding-left: 20px !important; 
  padding-right: 20px !important; */
  padding-top: 100px;
  min-height: calc(100vh - 85px);
}
.middle-section .breadcrumb {
  display: block;
  padding: 0;
  margin: 0 0 20px 0;
  border-radius: 0;
  font-size: 14px;
}
.middle-section .breadcrumb li a {
	color: #e84478;
}

.heading {
  font-size: 18px;
  font-weight: 400;
  color: #e84478;
  position: relative;
  margin: 0 0 30px 0;
  padding-bottom: 10px;
}
.heading:after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  background: #e84478;
}
.table-data {
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
}
.table-data th,
.table-data td {
  padding: 5px;
  font-size: 13px;
  color: #333;
  border: 1px solid #ccc;
  text-align: left;
}
.table-data th {
  font-weight: 600;
  color: #000;
  background: #e8e2e2;
}
.table-data td .linkBtn {
  color: #e84a73;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: 0;
}
.table-data tr:nth-child(even) {
  background: #fbfbfb;
}
.table-data tr:nth-child(odd) {
  background: #ffffff;
}
.table-top {
	margin-bottom: 30px;
}
.layoutfixed {
  table-layout: fixed;
  border-collapse: collapse;
}
.searchBox {
  display: block;
  width: 100%;
  position: relative;
}
.searchBox button {
  width: 40px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 15px;
  color: #333;
  background: none;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  cursor: auto;
}
.textR {
  text-align: right;
}
.textL {
  text-align: left;
}
.textC {
  text-align: center;
}
.pagination li a {
  margin: 0 5px;
  border-radius: 4px;
}
.pagination li.active a {
  border: 0;
  padding: 6px 12px 7px 12px;
  background: linear-gradient(-85deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}
.searchBox .field,
.fieldBoxFull .field {
	border: 2px solid rgba(0,0,0,0.10);
}
.backBtn {
  float: right;
  margin-top: 30px;
  margin-left: 20px;
  position: relative;
  z-index: 1;
}

/*Change Password*/
.changePasswordBox {
  width: 800px;
  margin: 0 auto 0 auto;
  padding: 60px;
  border-radius: 6px;
  box-shadow: 0px 3px 10px 0 rgba(0,0,0,0.20);
}
.changePasswordBox h1 {
	font-size: 30px;
	font-weight: 300;
	color: #e84478;
	margin: 0 0 20px 0;
}
.changePasswordBox p {
	font-size: 14px;
	color: #333;
	margin: 0 0 20px 0;
}
.changePasswordBox span {
	display: block;
	margin-bottom: 10px;
}

/*Management Section*/
.section-display table {
  margin-bottom: 30px;
}
.section-display .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.section-display#profile .heading {
	margin-top: 20px;
}
.gridTwoColumnSection {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
}
.gridTwoColumnSection .item .position,
.relative {
	position: relative;
}
.gridTwoColumnSection .item .position .calendar,
.relative .calendar {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 48px;
	height: 48px;
}
.gridTwoColumnSection .has-error .error {
	border: 1px solid #e84478;
}
.gridTwoColumnSection .form-group {
	margin-bottom: 0;
}
.gridTwoColumnSection .field {
	margin-bottom: 0;
}
.section-display .tab-content {
	box-shadow: none;
	padding: 0;
	margin-bottom: 30px;
}
.section-display .moving-tab {
	display: none;
}
.onboardTab {
	margin-bottom: 30px;
}
.onboardTab li {
	text-align: center;
	width: 150px !important;
}
.onboardTab li a {
	color: #333;
}
.onboardTab li.active a {
	background: linear-gradient(-85deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradientBG 15s ease infinite;
	transition: all 0.5s ease-in-out;
}

.search-box-active{
  display: flex;
  gap: 15px;
}
.search-box-active .input-wrapper{
  /* flex: 0 0 calc(75% - 20px); */
  flex: 1 0 auto;
}
.search-box-active .select{
  flex: 0 0 25%;
}
.search-box-active .select select{
  width: 100%;
  border-radius: 20px;
  box-shadow: none;
  outline: none;
  border: 1px solid #000;
  padding: 6px 15px;
}

.phone-chat .screen-phone button{
  bottom: 35px;
}

/*6-mar-21*/
.li-popup .multiselectDropdown .dropdown-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 999999;
  transform: translate(-50%, -50%);
  max-height: 400px;
  overflow-x: auto;
}
.li-popup .multiselectDropdown.multiselectDropdown-123 .dropdown-menu{
  position: absolute;
    top: 100%;
    left: 0;
    transform: unset;
}
.scroll-tbody table tbody {
    overflow: auto;
    overflow-x: auto;
    overflow-x: auto;
    overflow-x: hidden;
    max-height: 350px;
    display: block;
}
.scroll-tbody table thead{
  display: block;
}
.custom-modal-box{
  /* position: absolute !important; */
  top: 0 !important;
  background-color: rgba(0,0,0,0.5);
}
/*.table-suppliers td:nth-child(2), .table-suppliers th:nth-child(2){
  position: fixed;
}
.table-suppliers td:nth-child(3), .table-suppliers th:nth-child(3){
  margin-left: 170px;
}*/

.navbar-default .navbar-nav > li  button{
    padding-top: 15px;
    padding-bottom: 15px;
    background: unset;
    color: #777;
    margin: 0;
    font-weight: 900;
    border: none;
}

/*s 5/2/25 */
.nav-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-center{
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.c-mb-0{
  margin-bottom:0 !important;
}

.py-0{
  padding-top:0 !important;
  padding-bottom:0 !important;
}

.fw-bolder{
  font-weight:700;
  color:#000;
}

.logoText p:first-child{
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    color: rgb(51, 51, 51);
    font-weight: 700;
}
.logoText:last-child{
  color: rgb(119, 119, 119);
  padding: 16px 0;
}

.dividers{
  margin: 0px 5px;
  flex-shrink: 0;
  border-width: 0px thin 0px 0px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  align-self: stretch;
}

.mt-0{
  margin-top:0 !important;
}

.my-0{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.rounded-full{
  border-radius: 50%;
}

.user-img{
  width:50px;
  height:50px;
}

.user-img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.nav-inline{
  display: flex !important;
  align-items: center !important;
  column-gap: 16px;
}
header .topRight .top-menu li ul {
  width: 150px;
  /* left: -62px;
  top: 50px; */
  padding:0px;
}

header .topRight .top-menu li ul li a {
  padding: 5px 10px;
}

header .topRight .top-menu li ul{

  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

/* media */

@media (max-width:576px){
  header a.logo {
    margin: 0 32px;
}

.logoText:last-child {
  padding: 20px 0;
}

}

  /*end*/
/*22 apr CSS*/
#content-1 .border-right, #content-2 .border-right, #content-3 .border-right {
  background: #e3e3e3;
  padding: 0px 2px;
}
.tabs-aisensy-main label{
  padding: 5px;
  width: 33% !important;
  margin-bottom: 10px;
  border-radius: 15px;
  margin-right: 1px !important;
}

/*22 apr CSS*/

/* For media screen*/
@media only screen and (max-width :767px)  {
  .pm-0{
    padding: 0;
  }
  .hamburger {
    width: 30px;
    height: 30px;
    position: fixed;
    top: 25px;
    left: 15px;
    z-index: 16;
    border: 0;
    background: none;
    display: block;
  }
header{
    width: 100%;
    padding: 20px 10px 0px 0px;
    display: block;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 12;
    border-bottom: 1px solid #d6d6d6;
}
header a.logo img {
  width: 100%;
  height: auto;
  margin-left: 45px;
}
header a.logo .logoText{
  margin-left: 45px;
}

header .topRight .top-menu li {
    display: inline-block;
    vertical-align: top;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    margin: 0px;
}

header .topRight ul {
    margin: 0;
    padding: 4px 0 0 0px;
    display: inline-block;
    vertical-align: top;
}

header .topRight .top-menu {
    float: left;
    margin-right: 10px;
    margin-top: 5px;
}
.dashboard-business-tab .uib-tab{
  width: 100% !important;
  min-width: 100% !important; 
}
.dashboard-business ul.nav.nav-tabs{
  flex-direction: column !important;
}
}

.hide-menu{
  display: none;
}

.hide_new_leadtab{
  display: none;
}

.client-status{
  margin-top: 8px;
}

.client-comment{
  height: 78px !important;
  margin-top: 8px;
}

.tool-tip{
  position: relative;
}

.tool-icon{
  position: absolute;
  top: 0px;
  right: 8px;
  font-size: 16px;
}

.tool-popup{
  position: absolute;
  background-color: #FFFFFF;
  right: -8px;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 8px 16px;
  min-width: 100px;
  z-index: 16;
  line-height: 1.5;
}

.al-main .ng-isolate-scope{
  list-style: none;
}
#SuspenseLeadsModel .modal-dialog, #RequirementModel .modal-dialog{
  width: 1200px;
}
.leads-btn .btn{
  padding: 12px  6px;
  background-color: #d0332c;
  margin-top: 20px;
}
.leads-btn .col-sm-6{
  padding: 0px 15px ;
}

.leads-btn .col-sm-6:first-child{
  padding-left: 0px;
}
.leads-btn .col-sm-6:last-child{
  padding-right: 0px;
}
.modalBodyBox label {
  font-size: 15px;
}
.leads-btn .btn:active {
  background: #8e1921 !important;
}
.leads-btn .btn.active {
  background: #8e1921 !important;
}
.multi_dropdwn .multiselect-parent .dropdown-toggle{
    width: 100% !important;
    padding: 13px 15px;
    border-radius: 5px;
    border: 1px solid #ccc !important;
    margin-bottom: 20px;
    box-sizing: border-box !important;
}
.chose-file input[type="file"]{
  display: inline-block;
  width: 100px;
  outline: none;
}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
  content: 'Select file';
  display: inline-block;
  background: #e85656;
  border: 1px solid #d03e3e;
  color: #fff;
  border-radius: 5px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 10pt;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
}
.custom-file-input:hover::before {
  border-color: #d03e3e;
}
.custom-file-input:active::before {
  background: #e85656;
}
.line-h-table.table > tbody > tr > td{
  line-height: 1.3;
}

.suspense-lead-sheet{
  margin-top: 0;
  /* margin-bottom: 0; */
}
.suspense-lead-sheet h3{
  margin-top: 0;
}
.suspense-lead-sheet-page .middle-section{
  padding: 30px;
}
.suspense-lead-sheet-page .dashboard-tab h5{
  margin: 0;
}
.small-dropdown{
  max-width: 250px;margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
}
.d-flex{
  display: flex;
}
.align-item-center{
  align-items: center;
}
.b2b-dash-modal{
  text-align: left;
}
.b2b-dash-modal h4{
  font-size: 14px;    text-align: left;
  margin: 5px 0px;
}
.pt-5{
  padding-top: 5px;
}
.justify-content-between{
  justify-content: space-between;
}
.font-14{
  font-size: 14px;
}
.b2b-dash-modal table tr th, .b2b-dash-modal table tr td{
  pad: 6px 10px ;
}
.text-left{
  text-align: left;
}
.al-content.dashboard-b2b {
  padding: 86px 32px 8px 32px;
}
@media screen and (max-width: 767px) {
  #SuspenseLeadsModel .modal-dialog,  #RequirementModel .modal-dialog{
    width: auto;
  }
    }
  
    @media screen and (max-width: 998.98px) {
      .al-content.dashboard-b2b {
        padding: 32px 32px 8px 32px;
      }
}

.search-input-wrapper{
  background-color: #fff !important;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  width: 50%;
}
.search-input-wrapper input{
  background-color: #fff !important;
  margin: 0px 8px !important;
}
.theme-color{
  background-color: #8e1921;
  color: #fff;
  padding: 8px 9px;
  font-size: 19px !important;
}
.p-0{
  padding: 0 ;
}
#TemplateModal .modal-header .close {
  margin-top: 2px;
  left: -9px;
  color: #fff;
  position: relative;
}
#TemplateModal .text-muted{
  font-weight: 500 ;font-size: 13px;
  padding-top: 3px;
}
h6.msg-title {
  color: #8e1921 !important;
  font-weight: 500 !important;
}
.templte-box-list {
  padding: 3px 0px  !important;
}
.input-params{
  padding: 8px
}
.input-params input{
  border: 1px solid #e0e0e0;    padding: 6px 5px;
  font-size: 13px;
  border-radius: 3px;
}
.input-params .btn-primary{
  padding: 3px 9px;
  margin-left: 8px;
  height: 30px;
  top: -2px;
  position: relative;
}
.param-div{
  background-color: #ffd1d1;
  padding: 9px 5px;
  margin-bottom: 15px;
}
.param-list{
  padding: 4px 6px;
    max-width: 535px;
    overflow-x: auto;
    overflow-y: hidden;
    font-weight: 600;
    white-space: nowrap;
}
.search-div input{
  padding: 0px 8px !important;
}
.email-input {
  margin: 11px 0px;
}
span.pull-left, span.pull-right {
  color: #000;
}
.printRemove-dashboard{
  display: flex;
  gap: 30px;
  margin-top: 19px;
  margin-bottom: -13px;
}
span.pull-left, span.pull-right{
  padding-top: 13px;
}
.dashboard-dropdown {
  margin-bottom: 16px;
}
.submit-btn-performance{
  width: 100px;
  margin-top: 20px;
}
.pull-center.printRemove-dashboard.printRemove input {
  color: #000000;
  width: 100%;
  max-width: 400px;
  min-width: 270px;
  height: 42px;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 1px 4px;
}

@media only screen and (max-width: 767px){
.search-div .d-flex.f-div{
  display: block;
}
.mobile-m-5{
  margin-bottom: 15px !important;
}
.mobile-p-0{
  padding: 0px !important;
}
.mobile-p-10 {
  padding-bottom: 20px;
}
.db-nav-tab ul{
  display: flex;
  flex-direction: row;
}
}

@media screen and (max-width: 1024px)
{
.al-main.b2b-dash {
    padding-top: 70px !important;
}
.filter-box {
  padding: 20px;
}
}

.date_range_picker.date_range_picker_open{
  right: 0;
  /* display: block; */
  transition: 0.3s ease;
}
.date_range_picker {
  position: fixed;
  background: #fff;
  right: -101%;
  top: 80px;
  height: calc(100% - 80px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  padding: 20px;
  transition: 0.3s ease;
  max-width: 500px;
  width: 100%;
  color: #000;
  overflow-y: scroll;
  /* display: none; */
}
.filter-box .date_wrapper button.smallBtn.calendar {
  position: absolute;
  /* top: 6px; */
  right: 10px;
  top: auto;
  bottom: 27px;
}
.filter-box h5 {
  font-size: 15px;
  padding: 0;
  padding: 0 !important;
  margin: 7px 00px !important;
}
.filter-box button.btn.btn-primary, .filter-box button.btn.btn-primary:hover, .filter-box button.btn.btn-primary:active, .filter-box button.btn.btn-primary:focus, .filter-box button.btn.btn-primary:target{  
  background: #8e1921;
  border-color: #8e1921;
}
.close-btn{
  position: absolute;
  right: 25px;
  top: 14px;
  font-size: 24px;
  padding-top: 10px;
}
.multibox-filter-select .multiselect-parent{
  width: 100%;
}
.multibox-filter-select .multiselect-parent .btn{
  text-align: left;
}
.multibox-filter-select .multiselect-parent .btn .caret{
  right: 14px;
  position: absolute;
  top: 20px;
}
.quick-call-model.modal-dialog{
  max-width: 550px;
}

.quick-call-form {
  padding: 25px;
}
.quick-call-form label{
  padding-bottom: 5px;
}
.smll-btn-cmt{
  padding: 5px 25px  !important;
  width: 100%;
  font-size: 14px  !important;
}
.align-items-center{
  align-items: center;
}
/* process Css */

.line_box {
	display: flex;
	margin: 10px 0px 0px 0px;
	padding-bottom: 65px;
	/* overflow-x: scroll; */
	white-space: nowrap;
  /* flex-wrap: unset; */
  width: 100%;
  /* overflow-y: hidden; */
  /* justify-content: unset; */
  /* flex-wrap: unset; */
}
.text_circle {
	flex: 1;
	text-align: center;
	position: relative;
	
}
.text_circle:after {
	background-color: grey;
	bottom: 1.25em;
	content: "";
	display: block;
	height: 3px;
	position: absolute;
	right: 0;
	width: 50%;
	z-index: 1;
}
.stav_projektu .text_circle:after,.stav_projektu .text_circle:before {background-color: grey;}
.line_box h4 {
	color: #000000;
	font-weight: bold;
}
.line_box h4,.line_box p {
	font-size: 12px;
	margin-bottom: 0;
	padding: 0 5px;
	text-align: center;
	white-space: break-spaces;
	line-height: 1.3;
}
.text_circle{
	position: relative;
	width: 120px;
	height: 60px;
}
.subline {
	position: absolute;
	left: 0;
	bottom: -100%;
    width: 100%;
    height: 60px;
}

.subline h6 {margin-bottom: 0;}
.timeline {margin: 40px 0;}
.text_circle.done:after,.text_circle.done + .text_circle:before,.stav_projektu .text_circle.done:after,.stav_projektu .text_circle.done + .text_circle:before {background-color: #8e1921;}
.text_circle.sub:after {background-color: #8e1921;}
.text_circle:not(:first-child):before {
	bottom: 1.25em;
	content: "";
	display: block;
	height: 3px;
	position: absolute;
	left: 0;
	width: 50%;
	z-index: 1;
	background-color: grey;
}
.stav_projektu .text_circle:not(:first-child):before {background-color: grey;}
.text_circle:last-child:after {width: 0;}
.circle {height: 100%;}
.tvar {
	height: 20px;
	width: 20px;
	border: 2px solid #8e1921;
	display: flex;
	position: relative;
	border-radius: 100%;
	top: -30px;
	margin: 3px auto;
	background-color: #fff;
	z-index: 2;
}
.tvar span {
	margin: 25% auto;
	height: 8px;
	width: 8px;
	background-color: #8e1921;
	border-radius: 100%;
	color: #fff;
}
.stav_projektu .tvar {border: 2px solid grey;}
.stav_projektu .done .tvar,.stav_projektu .sub .tvar {border: 2px solid #8e1921; height: 20px;}
.subline h6 {color: #8e1921;}
.timeline .card-header:hover {
	background-color: #ececec;
	cursor: pointer;
}
.justify-content-center{
  justify-content: center;
}
.modal-s-input{
  margin-bottom: 10px
}
.modal-s-input input{
  margin-right: 50px;
  padding: 10px 4px  ;
}
 .send-text-box {
  text-align: left;
  margin-top: 50px;
 }
.send-text-box  .param-list{
  color: #000 !important;

}
/* .send-text-box .param-div{
  background-color: #fff !important;
  border: 1px solid #ccc;
} */
.send-text-box label{
  text-align: left;
}
.send-text-box .param-list{
  min-height: 20px;
  text-align: left;
  color: #000;
}
.send-text-box.input-params input{
  border: 1px solid #000;
  display: block;
  width: 50%;
}
.send-text-box.input-params button{
  margin-top: 10px;
  margin-left: 0;
}

/*campaignLeads css for summary*/
ul.content-li li span {
  display: inline-block;
  font-weight: 800;
  width: 27px;
  height: 27px;
  text-align: center;
  line-height: 2em;
  border-radius: 1em;
  background: #e64477cc;
  color: white;
  position: relative;
  list-style: none;
  margin-right: 8px;
}
ul.content-li li {
  list-style: none;
  margin-bottom: 7px;
}
ul.content-li li a {
  color: #162630;
  font-weight: 400;
  font-size: 15px;
  padding-left: 12px;
  list-style: none !important;
}
/*campaignLeads end css for summary*/

/*filter css*/
.campaignLeads-table i.icon-sort:before {
  content: "\f0dc";
  font-family: FontAwesome;
  font-style: normal;
  display: inline-block;
  color: #000;
}
/*filter END CSS*/

/*campaign Leads - Dashboard css*/
.campaignLeads-search.searchBox .field {
  border: 1px solid rgba(0,0,0,0.10);
}
.searchBox.campaignLeads-search {
  width: 100%;
  max-width: 400px;
}
.al-main.dashboard-main {
  padding: 10px 0 34px 0;
}
/* .viewLeadstable input.form-control {
  margin-top: 17px !important;
}*/
.viewLeadstable input.form-control {
  width: 100%;
  max-width: 400px;
} 
.campaigndetailtable input {
  width: 100%;
  max-width: 400px;
}
/*campaign Leads END css*/

/*s css 11-4-25 */
.custum-px-3{
  padding: 0 20px !important;
  }

  .custom-mt-3{
    margin-top: 20px !important;
  }

  .clr-icon{
    font-size: 17px;
    padding:15px 15px
  }

  .custom-gap-2{
    gap: 2rem;
  }

  .align-button{
    top: 15px !important;
    right: 19px !important;
  }

  .table-data-center tr td , .table-data-center tr th{
    text-align: center;
  }
  
  .custom-family{
    font-family:'Source Sans Pro', sans-serif;
  }

  .custom-mb-2{
    margin-bottom: 20px;
  }

  .custom-d-grid{
    display: grid !important;
  }

  .custom-my-2{
    margin: 10px 0;
  }

/* End */


/* iPhone X ----------------------------------- */
@media only screen and (device-width : 375px) and (device-height : 812px) and (-webkit-device-pixel-ratio : 3) {
   .subline:before {top: -43px;}
}
@media only screen and (device-width : 812px) and (device-height : 375px) and (orientation : landscape) and (-webkit-device-pixel-ratio : 3) {
   .subline:before {top: -31px;}
}
/* iPad portrait ----------------------------------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
   .subline:before {top: -29px;}
}
/* mobile width till 767px ----------------------------------- */
@media (max-width: 767px){
   .subline:before {top: -30px;}
}
/* Portrait iPad Pro */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
   .subline:before {top: -23px;}
}
/* mobile width till 480px ----------------------------------- */
@media (max-width: 480px){
   .subline:before {top: -43px;}
}
.call-modal .modal-dialog{
  width: 320px;
}
.call-modal .modal-header{
  background-color: #8e1921;
  color: #FFFFFF;
}

.call-modal  .modal-header .close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  opacity: 1;
  text-shadow: none;
}
.img-title{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.img-comment{
  font-size: 15px;
  margin: 15px 0px ;
}
.modal-img{
  padding: 0px 20px;
}
#imageModal .carousel-control .glyphicon-chevron-left, #imageModal  .carousel-control .glyphicon-chevron-right{
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 15px;
    color: #fff;
    background-color: #8e1921;
    line-height: 2;
    border-radius: 50%;
}
#imageModal  .carousel-control{
  top: 50%;
}

.uploadBox{
	margin: 20px 0px;
  text-align: center;
}
.uploadBox button{
  max-width: 200px;
  padding: 6px 17px;
}
.imageSection .fieldbox  textarea{
  height: 49px;
  max-width: 130px;
  padding: 5px 7px;
}
.imageSection .drop-box .field{
  max-width: 130px;
  padding: 5px 15px !important;
}
.imageSection{
  display: flex;
  gap: 8px;
  padding: 5px 0;
  overflow-y: hidden;
  /* width: 100vw; */
  justify-content: unset;
  /* align-items: center; */
  flex-wrap: unset;
}
.imageBox{
  width: 160px;
}
.modal-image-type{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.style-modal .modal-header .close.scroll-image-modal {
  margin: 0;
  background-color: #000;
  color: #fff;
  padding: 1px 6px;
  border-radius: 50%;
  line-height: 1;
  right: 23px;
  position: relative;
}
.modal-dialog .imageSection button.smallBtn {
  margin-top: 0;
  padding: 3px 21px;
}
.tool-box{
  width: 200px;
  height: 100px;
  overflow-x: scroll;
  white-space: normal;
  background-color: #ffffff !important;
  color: #000 !important;
  border: 1px solid #000000 !important;
  font-size:small;
}
.tool-box-header{
  height: auto;
  overflow-x: scroll;
  white-space: normal;
  background-color: #ffffff !important;
  color: #000 !important;
  border: 1px solid #000000 !important;
  font-size: small;
}
.templateUserSummary  p{
  line-height: 1.4;
  color: #000 !important;
}
.transactionalTemplateTable.table>tbody>tr>td {
  word-break: break-all;
  line-height: 1.2;
}
.upload-poster .form-control {
  width: 100%;
}

/*dashboard css*/
.all-details-leads{
  /* margin-top: 30px !important; */
  margin-bottom: 45px !important;
  padding-top: 9px;
}
.table-dashboard-leads{
  width: 100% !important;
}
.comments-p {
  color: #000 !important;
  font-size: 13px;
}
.table-dashboard-leads table thead tr th{
  word-wrap: normal !important;
}
select#clientStatus{
  max-width: 223px !important;
  min-width: 190px !important;
  width: 100%;
  height: 34px;
  padding: 2px 8px;
  border: 1px solid #ccc;
}
.table-dashboard-leads .table > thead > tr > th:nth-child(10), .table-dashboard-leads .table > tbody > tr > td:nth-child(10) {
  /* width: 70px !important; */
  max-width: 235px !important;
  min-width: 315px !important;
}
.location-details-2 {
  margin-top: 0px !important;
}
button.view-leads-comments{
  color: #e84a73;
  font-weight: 600;
  cursor: pointer;
  background: none !important;
  border: 0;
  padding-top: 0px;
  margin-top: -8px;
}

button.btn.btn-danger.view-leads-comments:hover,
.view-leads-details-btn:hover {
  color: #e85656 !important;
}
.dashboard-main {
  padding-top: 35px !important;
}
.total-list td{
  color: #fff !important;
}
.view-leads-details-btn {
  color: #e84a73;
  font-weight: 600;
  cursor: pointer;
  background: none !important;
  border: 0;
  padding-top: 0px;
}
.middle-section.dashboard-business {
  padding-top: 83px;
}
/* .panel-heading.content-title{
  margin-top: 5px !important;
} */
.campaign-details-total{
  background:#c2452f;
}
.campaign-details-total td{
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
}
.table > tbody > .campaign-details-total > td:first-child{
  text-align: justify !important;
}
.ongoing-tr{
  font-size:12px;
}
.images-view{
  color: #e84a73;
  font-weight: 600;
  cursor: pointer;
  background: none !important;
  border: 0;
  padding-top: 0px;
  margin-top: 12px;
}
/* .table-responsive tbody td:nth-child(2){
} */
tbody.detailedTable {
  display: contents;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: auto;
}
.pagination-div{
  display: flex; justify-content: space-between;
}
.search-chart-dashboard{
  height: 49px;
  width: 100%;
  max-width: 290px !important;
}
.dashboard-all-Campaign-details tfoot.ng-scope,
.dashboard-all-Campaign-details tfoot tr td {
  background: #ca1629;
  color: #fff !important;
}
.dashboard-ul.dashboard-main .uib-tab {
  /* width: 33.3% !important; */
  display: inline-block;
  padding: 3px;
  margin: 5px 2px;
  /* width: 32.5% !important; */
  width: 33.1% !important;
  text-align: center;
  margin-bottom: 10px;
  /* border-radius: 50px;
  margin-right: 5px; */
}

.nav.nav-tabs > li > a{
  border-radius: 50px !important;
}

.nav.nav-tabs > li.active > a{
  color: #ffffff;
  background: #c8a494 !important;
}
.nav.nav-tabs > li {
  /* border-top-left-radius: 24px; */
  border-radius: 50px !important;
}
.dashboard-ul .nav.nav-tabs, .dashboard-b2b .nav.nav-tabs {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 1px solid transparent;
  background-color: #fff;
}
.dashboard-ul .nav.nav-tabs > li.active > a{
  border-radius: 50px !important;
}
.dashboard-ul .nav.nav-tabs li {
  padding: 0px !important;
}
.dashboard-chart-table{
  /* display: contents; */
  max-height: 500px;
  overflow-y: auto;
  overflow-x: auto;
  /* min-height: 100px !important; */
  /* height: 100% !important; */
}
ul.licence_detail_bx.li-main li{
  border-radius: 50px !important;
}
.b2b-dashboard-shadow.dashboard-tab .tab-content {
  /* height: 100vh; */
    height: 100%;
}
/* select#md_status {
  height: 27px;
  padding: 2px 8px;
  border: 1px solid #ccc;
} */
.circle h4 {
  font-size: 12px;
  margin-bottom: 0;
  padding: 0px 6px 6px 9px !important;
  min-width: 144px !important;
  text-align: center;
  white-space: break-spaces;
  margin: 0px 0px;
}
.line_box{
  display: flex;
  padding-bottom: 89px;
  width: 100%;
  overflow-y: hidden;
}
.line_box h4, .line_box p {
  font-size: 12px;
  margin-bottom: 0;
  padding: 0 5px;
  text-align: center;
  white-space: break-spaces;
  line-height: 1.3;
}
.table-calender > thead > tr > th:first-child, .table-calender > tbody > tr > td:first-child{
  width: 100px !important;
  min-width: 81px !important;
}
.release-calender table td, .campaigndetailtable table th{
  min-width: 150px !important;
}
.dashboard-all-Campaign-details table tbody tr td{
  text-align: center !important;
}
.panel-title, .panel-heading{
  border-radius: 3px;
}
h4.panel-title.view-leads-selected select{
  /* white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 100% !important; */
}
.view-leads-selected select.form-control {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.back-arrow{
  color: #fff;
  background: #e75558;
  border-radius: 7px;
  padding: 10px 16px;
}
/*tab business*/
/* .dashboard-business-tab .uib-tab {
  width: 19.7% !important;
  margin-right: 5px !important;
  min-width: 19% !important;
  max-width: 19.3% !important;
  margin-bottom: 10px;
} */
.dashboard-business-tab .nav.nav-tabs, .all-tabs-radius ul.nav.nav-tabs{
  background-color: #fff !important;
}
.view-leads-details-btn:focus, .view-leads-comments:focus {
  color: #e84a73 !important;
}
.left-selections{
  display: flex;
  gap: 10px;
}
.left-selections > div{
  flex: 0 0 auto;
  width: calc(25% - 10px);
  /* max-width: 190px; */
  max-width: 216px;
}
.dashboard-tabs{
  box-shadow: 0 5px 5px 0 rgb(0 0 0 / 0%) !important;
}
.dashboard-main .nav.nav-tabs {
  display: flex;
}
.dashboard-business-tab ul.nav.nav-tabs {
  margin-right: -38px;
}
.dashboard-business-mca ul.nav.nav-tabs{
  margin-right: 0px !important;
}
.dashboard-business ul.nav.nav-tabs {
  text-align: center !important;
  display: flex;
  gap: 5px;
}
.dashboard-business-tab .uib-tab {
  /* width: 19.7% !important;
  min-width: 19% !important;
  max-width: 19.3% !important; */
  margin-bottom: 10px !important;
  flex: 0 0 auto !important;
  width: calc(20% - 10px) !important;
  height: 48px;
}
/*tab business*/

.dashboard-table-first{
  text-align: center !important;
}
.campaign-details-thead-fixed{
  overflow-y: auto;
  height: 37px;
}
.campaign-details-thead-fixed tr{
  position: sticky;
  top: 0;
}
.quick-template-head {
  padding: 15px;
}
.selected-templates{
  display: flex; 
  flex-wrap: wrap;
}
.selected-templates span, .selected-templates button {
  margin: 6px 0px 8px 0px;
}
#addTemplatesModal .close,
#globalHotLeadsCriteria .close,
#addNewLeadFormFields .close,
#statusFunnelModal .close {
  color: #fff !important;
  opacity: 0.9 !important;
}
#addTemplatesModal button.btn.btn-danger {
  margin: 15px 0px;
}
.campaignleads-modal{
  background-color: #8e1921;
  color: #FFFFFF;
}
.campaign-close-btn button.btn.btn-danger {
  margin-bottom: 20px;
}
button.remove-btn {
  margin-top: 0px !important;
}
.campaignleads-bottom-btn{
  margin-top: 0px !important;
}
h4.panel-title.view-leads-selected select {
  border: 1px solid #bf321b;
  height: 49px;
  width: 100%;
  /* max-width: 194px !important;
  min-width: 194px !important; */
  padding: 0px 8px !important;
}
.dashboard-tab.template-tabs.all-tabs-radius .uib-tab {
  width: 24.5%;
}
h4.panel-title.view-leads-selected {
  padding: 0px !important;
  background: #fff !important;
}
ul.chart-segment li{
  margin-top: 9px;
  color: #212529bf;
  font-size: 15px;
}
ul.chart-segment {
  margin-left: 29px;
}
.nvd3.nv-pie path{
  cursor: pointer !important;
}
/* .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td{
  border-top-left-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
} */

.table > thead > tr > th:first-child, .table > thead > tr > th:first-child{
  border-top-left-radius: 3px !important;
  border-bottom-left-radius: 3px !important;
  margin-bottom: 4px !important;
}
.table > thead > tr > th:last-child, .table > thead > tr > th:last-child{
  border-top-right-radius: 3px !important;
  border-bottom-right-radius: 3px !important;
  margin-bottom: 4px !important;
}
.leads-btn label.btn.btn-danger {
  border-radius: 50px !important;
}
/* ::-webkit-scrollbar-thumb{
  -webkit-border-radius: 10px !important;
  border-radius: 10px !important;
  background: yellow !important;
} */

/*template mea css start*/
.template-mea ul.nav.nav-tabs {
  background-color: #fff;
}
.template-mea.dashboard-tab .uib-tab{
  width: 24.7%;
}
.template-mea.dashboard-tab .uib-tab {
  width: 24.6%;
}
.searchBox.create-search input {
  width: 100%;
  max-width: 400px;
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 0%);
}
.action button.smallBtn {
  width: 48px;
  height: 48px;
}
.action input.field {
  margin-bottom: 11px !important;
  margin-right: 9px;
  width: calc(100% - 60px);
  display: inline-block;
  vertical-align: top;
  margin-top: 0px !important;
}
div.calendar-tab {
  background-color: #fff;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.calendar-tab .panel.panel-default {
  padding: 0px !important;
  margin-bottom: 5px;
}
a.accordion-toggle:hover {
  color: #fff !important;
}
.calendar-tab table.table-responsive {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
#activitycss .percent-circle {
  margin-left: 0px !important;
  padding-bottom: 5px !important;
  text-align: -webkit-center !important;
}
/*template mea css END*/

/*shubh css style 23-4-25 */

.gap-col-30-r-0{
  grid-column-gap: 30px !important;
  grid-row-gap: 0px !important;
}

.self-py-1{
  padding-top:5px !important;
  padding-bottom: 5px !important;
}

header .topRight .top-menu li ul{
  background: #eaeaea;
  width: max-content;
  left:unset;
  right: -35px;
}

.ul-provide-gap .dashboard-ul .nav.nav-tabs, .dashboard-b2b .nav.nav-tabs{
  margin-bottom: 20px ;
}

.ul-provide-gap .b2b-dashboard-shadow ul.nav.nav-tabs{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ul-provide-gap ul.licence_detail_bx.b2b-dashboard-leads{
  text-align: center;
}

.ul-provide-gap ul.licence_detail_bx.b2b-dashboard-leads li{
  width:274px;
}

.ul-provide-gap .dashboard-tab .uib-tab{
    width: 27%;
}

.style-for-tabs .licence_detail_bx {
  margin-top: 20px ;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.style-for-tabs .licence_detail_bx li{
  width: 27% !important;
}

.logo-wrapper img{
  width: 100% !important;
  height: auto;
  object-fit: cover;
}

.logo-wrapper{
  width:53%;
}

@media (max-width:1024px){
  .logo-wrapper img{
    width: 100% !important;
    height: auto;
    object-fit: cover;
  }
  
  .logo-wrapper{
    width: 70%;
  }
}
/* end */
@media (max-width: 649.98px){
  .pull-center.printRemove-dashboard.printRemove input {
    color: #000000;
    width: 100%;
    max-width: 177px;
    min-width: 175px;
  }
}

@media only screen and (min-width: 650px) and (max-height: 900px){
  .pull-center.printRemove-dashboard.printRemove input{
        width: 100%;
        max-width: 300px;
        min-width: 208px;
  }
}

@media (max-width: 900.98px){
  .printRemove-dashboard {
    display: contents; 
  }
  .printRemove-dashboard .select-btn label {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 901.98px){
  .printRemove-dashboard {
    display: inline-flex; 
  }
}

@media only screen and (min-width: 901.98px){
  .printRemove-dashboard {
    display: inline-flex; 
  }
}

@media only screen and (max-width: 991.98px){
  .left-selections {
    flex-direction: column;
  }
  .dashboard-flex{
    display: block !important;
  }
  .left-selections > div{
    display: contents;
  }
}

/* @media only screen and (max-width: 1000.98px){
  .printRemove-dashboard {
    display: flex;
  }
} */

/* @media only screen and (min-width: 1100.98px) and (max-width: 1600.98px){
  .printRemove-dashboard {
    display: inline-flex;
  }
} */

@media only screen and (min-width: 1101.98px) and (max-width: 1199.98px){
  .printRemove-dashboard {
    display: inline-flex;
  }
}

@media only screen and (min-width: 1100.98px) and (max-width: 1298.98px){
  .printRemove-dashboard {
    display: flex;
  }
}

@media only screen and (min-width: 1100.98px) and (max-width: 1200.98px){
  .printRemove-dashboard {
    display: inline-flex;
  }
}

@media only screen and (min-width: 1300.98px){
  .printRemove-dashboard {
    display: flex; 
  }
}

@media (max-width: 1200.98px){
  .panel-heading, .panel-footer{
    font-size: 13px !important;
    padding: 13px 5px !important;
  }
}

@media (max-width: 1201.98px){
  h4.panel-title.view-leads-selected select{
    padding: 0px 2px !important;
    font-size: 13px;
    font-weight: 600;
  }
}
