@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
}

body {
  background: rgb(221 219 241 / 37%);
}

/* ===== Sidebar ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 250px;
  padding: 15px 0px 10px 10px;
  background: #fff;
  transition: 0.5s;
  z-index: 100;
  overflow: hidden;
  border-right: 1px solid #f37b1c5c;
}

.sidebar.close {
  width: 58px;
}

/* ===== Reusable code - Here ===== */
.sidebar li {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  width: 230px;
}

.sidebar li a:hover span {
  font-weight: 600;
  color: #2d3476;
}

.sidebar .logo-top .image,
.sidebar .icon {
  min-width: 60px;
  border-radius: 6px;
}

.sidebar .icon {
  min-width: 60px;
  border-radius: 6px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sidebar .text,
.sidebar .icon {
  color: var(--text-color);
  transition: 0.3s;
}

.sidebar .text {
  color: #222;
  font-size: 14px;
}

.sidebar.close .text {
  opacity: 0;
}

/* =========================== */

.sidebar .logo-top {
  position: relative;
}

.sidebar .logo-top .image-text {
  display: flex;
  align-items: center;
}

.sidebar .logo-top .logo-text {
  display: flex;
  flex-direction: column;
}

header .image-text .name {
  margin-top: 2px;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.sidebar .logo-top .image {
  margin-right: 10px;
}

header .image-text .profession {
  font-size: 20px;
  margin-top: -10px;
  display: block;
  font-weight: 200;
  color: #fff;
}

.sidebar .logo-top .image img {
  border-radius: 6px;
  width: 160px;
}

.sidebar .logo-top .toggle {
  position: absolute;
  height: 25px;
  width: 25px;
  cursor: pointer;
  transition: 0.5s;
  right: 0;
  background: #050536;
  top: -15px;
  border-radius: 0px 0px 0px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar .logo-top .toggle i.fa {
  position: relative;
  transition: 0.5s;
  top: -3px;
  right: -3px;
}

.sidebar.close .logo-top span.toggle i.fa {
  transform: rotate(180deg);
}

.sidebar li.search-box {
  border-radius: 6px;
  background-color: var(--primary-color-light);
  cursor: pointer;
  transition: 0.5s;
}

.sidebar li.search-box input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--primary-color-light);
  color: var(--text-color);
  border-radius: 6px;
  font-size: 17px;
  font-weight: 500;
  transition: 0.5s;
}

.sidebar li a {
  list-style: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  text-decoration: none;
  transition: 0.3s;
  padding: 15px 0px 15px;
  border-bottom: 1px solid #eeeeee;
  margin: 0 15px 0 10px;
  cursor: pointer;
}

.sidebar li a img {
  margin-right: 15px;
}

.sidebar li.active a .text {
  color: #2a3374;
  font-weight: 600;
}

.sidebar .menu-bar {
  height: calc(100% - 55px);
  display: flex;
  justify-content: space-between;
  overflow-y: scroll;
}

.menu-bar::-webkit-scrollbar {
  display: none;
}

.sidebar .menu-bar .mode {
  border-radius: 6px;
  background-color: var(--primary-color-light);
  position: relative;
  transition: 0.5s;
}

.menu-bar .bottom-content .toggle-switch {
  position: absolute;
  right: 0;
  height: 100%;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
}

.toggle-switch .switch {
  position: relative;
  height: 22px;
  width: 40px;
  border-radius: 25px;
  background-color: var(--toggle-color);
  transition: 0.5s;
}

.Right_part {
  position: absolute;
  top: 0;
  left: 250px;
  width: calc(100% - 250px);
  transition: 0.5s;
  padding: 0;
}

.Right_part .text {
  font-size: 30px;
  font-weight: 500;
  color: var(--text-color);
  padding: 12px 60px;
}

.sidebar.close ~ .Right_part {
  left: 58px;
  /* height: 100vh; */
  width: calc(100% - 58px);
}

.sidebar li.active a {
  position: relative;
}

.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 270px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.sidebar .menu ul.menu-links {
  padding: 0;
  margin: 0px 0 0;
}

.sidebar .logo-top {
  margin: 0 0px 0 0;
}

.sidebar .logo-top .image-text {
  margin: 0 15px 10px 0px;
  border-bottom: 1px solid #64609a33;
  padding: 0 0 15px;
}

header .site_header .user .dropdown .dropbtn .user_name h2 {
  font-size: 26px;
  font-weight: 600;
  color: #2a3374;
  margin: 0;
}


.sidebar .menu a.log-out {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #2d3476;
  font-weight: 500;
  display: flex;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
}

.sidebar li a img {
  width: 24px;
    /* height: 20px; */
    max-width: 24px;
}

.sidebar li.nav-link.active a img{
  filter: brightness(0) saturate(100%) invert(17%) sepia(31%) saturate(1066%) hue-rotate(207deg) brightness(96%) contrast(92%);
}


header .site_header .user .dropdown .dropbtn .user_name p.last_login {
  margin: 0px 0 0;
  font-size: 14px;
  color: #222222;
  font-weight: 500;
}

header .site_header .user .dropdown .dropbtn .user_icon {
  position: relative;
}

header .site_header .user .dropdown .dropbtn .user_icon span.user_edit {
  position: absolute;
  bottom: 0;
  display: block;
  right: -5px;
}

header .site_header .Search form {
  width: 100%;
  position: relative;
  overflow: hidden;
}

header .site_header .Search form input {
  width: 100%;
  height: 50px;
  border-radius: 50px;
  outline: none;
  border: 1px solid #cecece;
  padding: 10px 20px;
  font-weight: 500;
}

header .site_header .Search form button {
  position: absolute;
  right: 0px;
  top: 0;
  border: 0;
  background: #2a3374;
  height: 50px;
  padding: 0 25px;
  border-radius: 0px 50px 50px 0;
  color: #fff;
  font-size: 20px;
}

header .site_header .Icon .icon_inner a {
  text-decoration: none;
  margin: 0 0 0 5px;
  transition: 0.3s;
}

header .site_header .Icon .icon_inner a:hover img {
  transform: scale(1.05);
}

header .site_header .Icon .icon_inner a img {
  transition: 0.3s;
}

.site_header {
  padding: 14px 30px;
  background: rgba(4, 4, 53, 1);
}

.user-action button#dropdownMenuButton {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}

.user-action button#dropdownMenuButton img {
  width: 20px;
  border-radius: 50px;
  height: 20px;
}

.site_header .header-inner .page-title h2 {
  margin: 0 0 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.site_header .header-inner .page-title {
  display: flex;
  align-items: center !important;
}

.site_header .header-inner .page-title img {
  margin-right: 5px;
  width: 20px;
}

.site_header .user-data {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site_header .user-data .user-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site_header .user-data .search form {
  position: relative;
}

.site_header .user-data .search form input::placeholder {
  color: #ffffff;
  font-weight: 300;
  font-size: 12px;
}

.site_header .user-data .search form input {
  background: #151542;
  border: 1px solid #ffffff33;
  border-radius: 5px;
  padding: 5px 10px;
  color: #fff;
  outline: none;
  font-size: 14px;
}

.site_header .user-data .search form button {
  padding: 0;
  border: 0;
  background: transparent;
  position: absolute;
  color: #ffffff;
  right: 10px;
  top: 6px;
}

.user-action button#dropdownMenuButton::after {
  display: none;
}

.main {
  padding: 0 15px;
  color: #000;
}

.main .user-name h3.heading {
  font-size: 24px;
  font-weight: 600;
  margin: 15px 0 0;
  color: #222;
}

.main .user-name p {
  margin: 0 0 0;
  font-size: 14px;
  color: #222;
}

.main {
  padding: 30px 30px;
  color: #000;
  min-height: calc(100vh - 90px);
}

.main .user-name h3.heading {
  font-size: 22px;
  font-weight: 700;
  margin: 0px 0 0;
  color: #050536;
}

.footer {
  padding: 10px;
  text-align: center;
  color: #222;
  background: #ffffff;
  border-top: 1px solid #f37b1c5c;
  position: absolute;
  width: 100%;
}

.footer p {
  margin: 0;
  font-size: 12px;
}

.top-box .boxes {
  gap: 20px;
  flex-wrap: wrap;
  margin: 15px 0 0px;
}

.top-box .boxes .box {
  background: #fff;
  border: 1px solid #e6e9ed;
  border-radius: 10px;
  box-shadow: 0 5px 14px -2px #e9e9e9;
  overflow: hidden;
  /* flex: auto; */
  width: Calc(33.33% - 14px);
}

.top-box .boxes .box h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.top-box .boxes .box .top {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-box .boxes .box .top .icon {
  width: 60px;
  padding: 12px;
  border-radius: 0px 0px 20px 0px;
  height: 50px;
  object-fit: contain;
}

.top-box .boxes .box span.count {
  font-size: 50px;
  font-weight: 800;
  padding: 0 15px;
  display: block;
}

.top-box .boxes .box span.count {
  font-size: 30px;
  font-weight: 800;
  padding: 10px 15px 0;
  display: block;
}

.top-box .boxes .box a {
  float: right;
  padding: 8px 12px;
  color: #fff;
  border-radius: 10px 0px 0 0;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
}

.top-box .boxes .box a:hover {
  transform: scale(1.05);
}

.top-box .boxes .box p {
  margin: -6px 0 10px;
  padding: 0 0px 0px;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #6d6d6d;
}

.top-box .boxes .box p a {
  text-decoration: underline;
  color: #fc7c2c;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.top-box .boxes .box p a:hover {
  text-decoration: none;
  color: #000;
}

.chart .heading h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.chart .heading {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fef3ea;
}

.boxes .box {
  border-color: #f37b1c5c !important;
}

.chart {
  border: 1px solid;
  border-color: #f37b1c5c !important;
  border-radius: 10px;
  overflow: hidden;
  margin: 30px 0 30px;
}

.chart .heading .buttons button {
  border: 0;
  background: #fc7c2c;
  padding: 4px 15px;
  border-radius: 5px;
  color: #fff;
}

.boxes .-bottom-box {
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 30px;
}

.boxes .-bottom-box .box {
  width: Calc(33.33% - 16px);
  background: #fff;
  border: 1px solid #e6e9ed;
  border-radius: 10px;
  box-shadow: 0 5px 14px -2px #e9e9e9;
  overflow: hidden;
}

.boxes .-bottom-box .box .heading {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e6e9ed;
  padding: 15px 15px;
  margin: 0;
  background: #fc7c2c17;
  align-items: center;
}

.boxes .-bottom-box .box .heading h2 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.boxes .-bottom-box .box .heading button#dropdownMenuButton {
  background: transparent;
  border: 0;
  padding: 0;
  color: #000;
}

.boxes .-bottom-box .box .heading button#dropdownMenuButton::after {
  display: none;
}

.boxes .-bottom-box .box .heading .icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.boxes .-bottom-box .box .box-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0;
  margin: 0px 15px 0px;
  border-bottom: 1px solid #ccc;
  padding: 15px 0px 15px;
}

.boxes .-bottom-box .box .box-data .left img {
  width: 40px;
  border-radius: 50px;
}

.boxes .-bottom-box .box .box-data .left {
  display: flex;
  gap: 10px;
}

.boxes .-bottom-box .box .box-data .left span.text {
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}

.boxes .-bottom-box .box.percentage .box-data {
  margin: 0;
  padding: 10px 15px;
  border: 0;
}

.boxes .-bottom-box .box.percentage .box-data:nth-child(odd) {
  background: #f1f1f1;
}

.boxes .-bottom-box .box .top {
  margin: 0 0 20px;
}

.boxes .-bottom-box .box .box-data .left span.text p {
  margin: 0 0 0;
  font-size: 12px;
}

.boxes .-bottom-box .box .box-data .left span.text span {
  font-weight: 400;
}

.boxes .-bottom-box .box .box-data:last-child {
  border: 0;
}

.dropdown-menu.show {
  transform: translate3d(-134px, 35px, 0px) !important;
}

.chart canvas#salesChart {
  padding: 20px;
  background: #fff;
}

.boxes .-bottom-box .box span.count {
  font-size: 14px;
  font-weight: 500;
}

.boxes .-bottom-box .box .top h2 {
  font-size: 42px;
  font-weight: 800;
  color: #f37b1c;
  margin: 0;
}

.boxes .-bottom-box .box .top span.line {
  position: relative;
  display: block;
  margin: 5px 0 5px;
  width: 100%;
  height: 4px;
  background: #ccc;
  border-radius: 10px;
}

.boxes .-bottom-box .box .top {
  width: 100%;
  padding: 10px 15px 0;
}

.boxes .-bottom-box .box .top span.line::before {
  content: "";
  width: 86%;
  background: #eb7a00;
  position: absolute;
  height: 4px;
  border-radius: 10px;
}

i.fa.fa-times {
  cursor: pointer;
}

.boxes .-bottom-box .box .top p {
  margin: 0 0 0;
  font-size: 14px;
}

.boxes .-bottom-box .box .top h2 i.fa {
  font-size: 16px;
  font-weight: 600;
  margin: 0 1px 10px;
}

.boxes .-bottom-box .box .top h2 {
  display: flex;
  align-items: end;
}

.boxes .-bottom-box .box .top h2 i.fa.grey {
  color: #ddd;
  position: relative;
  overflow: hidden;
}

.boxes .-bottom-box .box .box-data.rating .left {
  gap: 25px;
  align-items: center;
}

.boxes .-bottom-box .box .box-data.rating span.text {
  font-size: 14px;
}

.boxes .-bottom-box .box .box-data.rating .left span.rating {
  color: #eb7a00;
  font-size: 14px;
}

.boxes .-bottom-box .box .box-data.rating .right {
  display: flex;
  gap: 25px;
}

.boxes .-bottom-box .box .box-data.rating .left span.rating i.fa.grey {
  color: #ddd;
}

.boxes .-bottom-box .box .top.rating-head h2 {
  flex-direction: column;
  align-items: start;
}

.boxes .-bottom-box .box .top.rating-head h2 span.star i.fa {
  margin: 0px 0 0px;
}

.boxes .-bottom-box .box .top.rating-head h2 span.star {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0 0 20px;
}

.boxes .-bottom-box .box .data {
  max-height: 350px;
  overflow: auto;
}

.boxes .-bottom-box .box .data.percentage-data {
  max-height: 235px;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.site_header .user-data .user-action .mail {
  position: relative;
}

.site_header .user-data .user-action .mail::before {
  width: 8px;
  height: 8px;
  background: #e37900;
  position: absolute;
  content: "";
  right: -2px;
  top: 2px;
  z-index: 1;
  border-radius: 20px;
  animation: blink 1s infinite;
}

.site_header .user-data .user-action .notification {
  position: relative;
}

.site_header .user-data .user-action .notification::before {
  width: 8px;
  height: 8px;
  background: #e37900;
  position: absolute;
  content: "";
  right: 2px;
  top: 2px;
  z-index: 1;
  border-radius: 20px;
  animation: blink 1s infinite;
}

.site_header .user-data .user-action .notification::after {
  width: 14px;
  height: 10px;
  background: #050536;
  position: absolute;
  content: "";
  right: -3px;
  top: 1px;
  z-index: 0;
  border-radius: 20px;
}

.invoice-container .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin: 0 0 20px;
}

.invoice-container .header h4 {
  border: 0 !important;
  font-size: 20px;
  font-weight: 600;
}

.invoice-container .header button {
  font-size: 20px;
  padding: 0;
  margin: 0 0 5px;
}

.invoice-container .model-data .company-name {
  font-size: 18px;
  font-weight: 600 !important;
}

.invoice-container .model-data .right-header {
  margin: 5px 0 0;
}

.invoice-container .section {}

.invoice-container .section p {
  margin: 0 0 5px;
}
.Subscription_Management_view_detail .details .data:last-child {
  width: 100%;
}
.table-data-main .box table.table-data td.chattext {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100px;
  text-wrap-mode: nowrap;
}
/* .chat-logs-data .box table.table-data td {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100px;
  text-wrap-mode: nowrap;
} */
/* -------Retailers PAGE CSS------- */

.table-data-main .box {
  background: #fff;
  border: 1px solid #f37b1c5c;
  border-radius: 10px;
  box-shadow: 0 5px 14px -2px #e9e9e9;
  overflow: hidden;
  margin: 0px 0 10px;
}

.table-data-main .box.mproduct {
  margin: 10px 0 10px;
}

.table-data-main .box .top_part {
  padding: 20px 20px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #f37b1c5c;
}

.table-data-main .box .top_part .heading h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 0px 0 0;
  color: #050536;
}

.table-data-main .box .top_part .heading p {
  margin: 0 0 0;
  font-size: 14px;
}

.table-data-main .box .top_part .table-actions .actions-left button {
  background-color: rgb(82 196 26 / 0%);
  border: 1px solid #d0d5dd;
  padding: 8px 15px;
  margin-left: 10px;
  cursor: pointer;
  color: #050536;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  gap: 5px;
  transition: 0.3s;
  border: 0;
  margin: 0;
}

.table-data-main .box .top_part .table-actions .actions-left {
  display: flex;
}

.table-data-main .box .top_part .table-actions .actions-left button.export {
  border: 1px solid #d0d5dd;
}

/* .table-data-main .box .top_part .table-actions .actions-left button.delete {padding: 0;} */

.table-data-main .box table.table-data {
  width: 100%;
}

.table-data-main .box table.table-data th {
  background: #f37b1c24;
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
}

.table-data-main .box table.table-data tr {
  border-bottom: 1px solid #ccc;
  transition: 0.3s;
}

.table-data-main .box table.table-data tr:hover {
  background: #f3f2fa;
}

.table-data-main .box table.table-data tr:last-child {
  border: 0;
}

.table-data-main .box table.table-data td {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 400;
}

.table-data-main .box table.table-data input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.table-data-main .box table.table-data td button.company-info {
  background-color: #ffffff00;
  border: 0px solid #f37b1c;
  padding: 0px 0px;
  cursor: pointer;
  color: #000000;
  border-radius: 50px;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
  margin: 0 0 0 6px;
}

.table-data-main .box table.table-data td button.company-info:hover {
  transform: scale(1.05);
}
.table-data-main .box table.table-data.product-listtable tr td:first-child {
  width: 90%;
}

.table-data-main .box table.table-data.product-listtable tr td {
  width: 10%;
}

.table-data-main .pagination {
  justify-content: space-between;
  margin: 0 0 10px;
  padding: 0 0 0px;
  align-items: center;
}
button.disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}
/* .table-data-main .pagination button {
  background-color: rgb(82 196 26 / 0%);
  border: 1px solid #d0d5dd;
  padding: 8px 15px;
  margin-left: 10px;
  cursor: pointer;
  color: #050536;
  border-radius: 5px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  margin: 0;
} */
.table-data-main .pagination button {
  background-color: rgb(82 196 26 / 0%);
  border: 1px solid #d0d5dd;
  padding: 8px 15px;
  margin-left: 10px;
  cursor: pointer;
  color: #050536;
  border-radius: 5px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  margin: 0 2px 0;
}

table.table-data.table_multi_data tr td {
  width: 45%;
}

table.table-data.table_multi_data tr td:last-child {
  width: 10%;
}

.table-data-main .pagination button.active {
  background: #eb7a00;
  color: #fff;
}

.company-info-model .modal-dialog {
  max-width: 1024px;
  padding: 0 15px;
}

.company-info-model .modal-content .modal-header {
  justify-content: space-between;
  padding: 10px 15px;
  background: #f37b1c1f;
}

.company-info-model .modal-content .modal-header h5 {
  color: #050536;
  font-size: 18px;
  font-weight: 600;
}

.company-info-model .modal-content .modal-header button.close {
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 30px;
  line-height: 0;
}

.info-from form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-from form span.inputs {
  width: Calc(50% - 5px);
  margin: 0 0 0px;
}

.info-from form.add_product span.inputs {
  width: Calc(46% - 5px);
}

.info-from form .inputs label {
  color: #000000;
  font-size: 13px;
  display: block;
  margin: 0 0 4px;
  font-weight: 400;
  text-transform: capitalize;
}


.info-from form span.inputs input {
  width: 100%;
  padding: 10px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  color: #000;
}

.company-info-model .modal-content .modal-body {
  max-height: 250px;
  overflow: auto;
}

.company-info-model .modal-content .modal-header.product-info {
  border-top: 1px solid #f37b1c24;
  border-radius: 0;
  margin: 10px 0 0px;
}

.info-from form span.inputs select {
  width: 100%;
  padding: 10px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.company-info-model .modal-footer button {
  padding: 10px 0;
  height: auto;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  width: 150px;
  transition: 0.3s;
  border-radius: 50px;
}

.company-info-model .modal-footer button.btn.btn-secondary {
  background-color: rgb(243 123 28 / 6%);
  border: 1px solid #d0d5dd;
  color: #050536;
}

.box.info-data {
  background: #fff;
  border: 1px solid #f37b1c5c;
  border-radius: 10px;
  box-shadow: 0 5px 14px -2px #e9e9e9;
  /* overflow: hidden; */
  margin: 0px 0 10px;
}

.main a.back {
  display: inline-block;
  margin: 0px 0 15px;
  color: #050536;
}

.box.info-data .top_part {
  padding: 15px;
  background: #fef3ea;
  border-bottom: 1px solid #f37b1c5c;
  border-radius: 10px 10px 0 0;
}

.box.info-data .top_part h2 {
  font-size: 18px;
  font-weight: 500;
  margin: 0px 0 0;
  color: #050536;
}

.box.info-data .top_part p {
  margin: 0;
  font-size: 14px;
}

.box.info-data .info-from {
  padding: 15px;
}

.info-from form .button {
  text-align: right;
  width: 100%;
  margin: 20px 0 10px;
}


.info-from form .button button {
  padding: 10px 50px;
  height: auto;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  width: auto;
  transition: 0.3s;
  border-radius: 50px;
  border: 0;
  background: #fc7c2c;
}


.info-from form .button button:hover {
  transform: scale(1.05);
}

.info-from form .button button.addmore {
  background: #050536;
  margin-right: 5px;
}

.table-data-main .box table.table-data td button.company-info img {
  width: 20px;
}
.box.info-data .info-from .plan table.table-data.table_multi_data th {
  font-size: 12px;
  font-weight: 600;
  color: #f37b1c;
}

.box.info-data .info-from .plan table.table-data.table_multi_data td {
  width: auto !important;
  font-size: 12px;
  padding: 10px 5px;
  border-bottom: 1px solid #ccc;
}


.box.info-data .info-from .plan table.table-data.table_multi_data td:nth-child(4) {
  min-width: 80px;
}

.box.info-data .info-from .plan table.table-data.table_multi_data td button {
  /* padding: 5px 5px;
  border: 0;
  background: #f37b1c;
  color: #fff;
  border-radius: 5px; */
  padding: 5px 5px;
    border: none;
    color: #050505;
    background: none;
    font-size: 13px;

}
.box.info-data .info-from  .plan.payment_history_table {
  width: 100%;
}

.box.info-data .info-from .plan.payment_history_table table.table-data.table_multi_data {
  width: 100%;
}
/* -------Manufacturers PAGE CSS------- */

.files input {
  outline: 2px dashed #07078359 !important;
  outline-offset: -10px !important;
  -webkit-transition: outline-offset 0.15s ease-in-out,
    background-color 0.15s linear !important;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear !important;
  padding: 80px 43% !important;
  text-align: center !important;
  margin: 0 !important;
  width: 100% !important;
}

.files input:focus {
  outline: 2px dashed #92b0b3 !important;
  outline-offset: -10px !important;
  -webkit-transition: outline-offset 0.15s ease-in-out,
    background-color 0.15s linear !important;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear !important;
  border: 1px solid #92b0b3 !important;
}

.files {
  position: relative !important;
}

.files:after {
  pointer-events: none !important;
  position: absolute !important;
  top: 40px !important;
  left: 0 !important;
  width: 50px !important;
  right: 0;
  height: 56px !important;
  content: "";
  background-image: url(../img/cloud-computing.png) !important;
  display: block !important;
  margin: 0 auto !important;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
}

.color input {
  background-color: #f1f1f1;
}

.files:before {
  position: absolute !important;
  bottom: 23px;
  left: 0;
  pointer-events: none;
  width: 100%;
  right: 0;
  content: "Drag & drop pdf file here. ";
  display: block;
  margin: 0 auto;
  color: #050536;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}

.files.stylingfile:before {  
  content: "Drag & drop `JPG, PNG, JPEG, or SVG` file here.";
}


.info-from form span.inputs.form-group.files input#fileUpload {
  padding: 80px 36% !important;
}

.info-from form span.inputs.form-group.files {
  width: 100%;
}

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

.box.info-data .info-from.color-form span.inputs {
  width: 10%;
}

.box.info-data .info-from.color-form span.inputs.form-group.files {
  width: 100%;
  margin: 0 0 20px;
}

.info-from form div#form-container {
  width: 100%;
}

.info-from form div#form-container .form-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0px 0 10px;
  align-items: baseline;
}

.box.info-data .info-from.color-form span.inputs input[type="color"] {
  padding: 0;
  height: 40px;
  border: 0;
  border-radius: 0;
}

.dropdown-content label {
  display: flex !important;
  align-items: center;
  gap: 4px;
}

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

.top_part.Product_heding .heading button {
  border: 0;
  background: #fc7c2c;
  padding: 6px 22px;
  margin: 0 0px 0px 10px;
  border-radius: 50px;
  color: #fff;
  transition: 0.3s;
}

.top_part.Product_heding .heading button.addmore {
  background: #070736;
}

.top_part.Product_heding .heading button:hover {
  transform: scale(1.05);
}

.boxes .-bottom-box .box .top h2 i.fa.fa-arrow-up {
  margin-left: 10px;
  color: #000;
}

.boxes .-bottom-box .box .heading .icon select {
  background-color: #ffdcc0;
  border: 0;
  font-size: 14px;
  padding: 5px 10px;
  outline: none;
  color: #03032e;
  border-radius: 5px;
}

.boxes .-bottom-box .box.percentage .box-data .left {
  width: 50%;
}

.boxes .-bottom-box .box.percentage .box-data .middle {
  width: 20%;
}

.boxes .-bottom-box .box .box-data a {
  font-size: 14px;
  background: #f37b1c;
  padding: 5px 10px;
  display: block;
  border-radius: 5px;
  color: #fff;
  transition: 0.3s;
}

.boxes .-bottom-box .box .heading .icon select option {
  background: #fff;
}

.boxes .-bottom-box .box .box-data a:hover {
  transform: scale(1.05);
}

.info-from form .inputs.multiple {
  position: relative;
  overflow: hidden;
}

.info-from form .inputs.multiple i.fa {
  position: absolute;
  right: 0;
  padding: 13px 20px;
  background: #0505361a;
  cursor: pointer;
  border-radius: 0px 6px 6px 0;
  top: 24px;
}

.info-from form .inputs.multiple {
  width: Calc(50% - 5px);
  margin: 0 0 0px;
}

.info-from form .inputs.multiple input {
  width: 100%;
  padding: 10px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  color: #000;
  margin: 0 0px 0px 0px;
  padding-right: 57px;
}

.info-from form .inputs.multiple .input-container .input-wrapper {
  position: relative;
  width: Calc(33.33% - 7px);
  margin: 10px 0 0;
}

.info-from form .inputs.multiple .input-container .input-wrapper i.fa {
  top: 0;
}

.info-from form .inputs.multiple .input-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 10px;
}

.email-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background: #0000006b;
}

.popupinner {
  background: #fff;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px 0px #00000029;
  width: 40%;
  margin: auto;
  position: relative;
}

.email-popup form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.email-popup span.inputs {
  width: Calc(50% - 5px);
}

.email-popup span.inputs label {
  color: #000;
  display: block;
  font-size: 14px;
  margin: 0 0 3px;
  font-weight: 400;
}

.email-popup span.inputs input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin: 0 0 10px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
}

.email-popup span.button {
  width: 100%;
  text-align: right;
}

.email-popup span.button button {
  padding: 8px 40px;
  height: auto;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  width: auto;
  transition: 0.3s;
  border-radius: 50px;
  border: 0;
  background: #fc7c2c;
}

.email-popup span.button button:hover {
  transform: scale(1.05);
}

.info-from form span.inputs textarea {
  width: 100%;
  padding: 10px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  color: #000;
}

.user-name {
  margin: 0 0 20px;
}

/* --------------- */

.custom-dropdown {
  position: relative;
  display: inline-block;
  width: 200px;
}

.dropdown-btn {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  text-align: left;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  width: 100%;
  max-height: 350px;
  overflow-y: auto;
  z-index: 1;
  margin: 5px 0 0;
}

.dropdown-content label {
  display: block;
  padding: 5px;
  cursor: pointer;
}

.dropdown-content label:hover {
  background-color: #f1f1f1;
}

.info-from form div#form-container .form-group .custom-dropdown {
  width: Calc(47% - 5px);
  margin: 0 0 0px;
}

.info-from
  form
  div#form-container
  .form-group
  .custom-dropdown
  button.dropdown-btn {
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-box .boxes .box h3 span#plan {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 3px 0 0px;
  display: block;
}

.top-box .boxes .box span.count.date-time p {
  margin: 19px 0 0;
  color: #1e8d7e;
}

.top-box .boxes .box span.count.date-time {
  font-size: 22px;
}

.box.info-data .info-from .plan span {
  font-size: 16px;
  font-weight: 500;
}

.subscription-plan-main {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.box.info-data .info-from .plan span.id {
  display: block;
  margin: 0 0 10px;
}

.box.info-data .info-from .plan span span.Subscriptionplan {
  color: #f37b1c;
  font-weight: 600;
}

.box.info-data .info-from .plan span span.Subscriptionplan span.small {
  font-size: 12px;
  font-weight: 500;
}

.box.info-data .info-from .plan span.heading {
  display: block;
  border-bottom: 1px solid #ccc;
  padding: 0 0 10px;
  margin: 0 0 20px;
  color: #f37b1c;
  font-size: 18px;
  font-weight: 600;
}

.box.info-data .info-from .plan span.heading span.small {
  font-size: 14px;
  color: red;
  font-weight: 400;
}

.box.info-data .info-from .plan {
  width: Calc(33.33% - 10px);
  box-shadow: 0 0 10px -3px #ccc;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0 20px;
}

.box.info-data .info-from .buttons button {
  padding: 8px 30px;
  height: auto;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  border: 0;
  background: #fc7c2c;
  margin-right: 10px;
}

.box.info-data .info-from .buttons {
  border-top: 1px solid #ccc;
  padding: 15px 0 0;
}


.info-from form .button button.disable {
  background: #adadad;
}

/* .info-from form .button button {
  margin-left: 6px;
} */

.box.info-data .info-from .buttons button:hover {
  transform: scale(1.05);
}

.table-data-main .box .top_part .table-actions .actions-left span.search input {
  border: 1px solid #d0d5dd;
  padding: 8px 45px 8px 10px;
  color: #050536;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
}

.table-data-main .box .top_part .table-actions .actions-left span.search {
  margin-right: 10px;
  position: relative;
}

.table-data-main
  .box
  .top_part
  .table-actions
  .actions-left
  span.search
  button {
  background: #050536;
  padding: 13px;
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  border-radius: 0px 5px 5px 0;
}

.table-data-main .box table.table-data td button.company-info i {
  font-size: 20px;
  color: #050536;
  position: relative;
  top: 2px;
}

.Request-chatbot-code {
  padding: 20px;
}

.Request-chatbot-code button#ChatbotCode {
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  transition: 0.3s;
  border-radius: 5px;
  border: 0;
  background: #fc7c2c;
}

.Request-chatbot-code button#ChatbotCode:hover {
  transform: scale(1.05);
}

.bot-code {
  margin: 20px;
  padding: 0px;
  border: 1px solid #f37b1c5c;
  border-radius: 10px;
  overflow: hidden;
}

.bot-code .top {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f37b1c29;
}

.bot-code .top h2 {
  font-size: 18px;
  margin: 0;
  color: #f37b1c;
}

.bot-code .top span.copy {
  font-size: 14px;
  color: #f37b1c;
  display: block;
  border: 1px solid;
  padding: 3px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.bot-code .top i.fa {
  margin-right: 4px;
}

.bot-code .Code {
  padding: 10px 20px;
  background: #050536;
  color: #ffffff;
  max-height: 580px;
  overflow: auto;
}

div#copyMessage {
  width: max-content;
  position: absolute;
  top: 70px;
  right: 40px;
  background: #58587a;
  padding: 10px 15px;
  border-radius: 7px;
  font-size: 14px;
  color: #fff;
  border: 1px solid #ffffff75;
}

.bot-code {
  position: relative;
}

.info-from form span.inputs.form-group.radio {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-from form span.inputs.form-group.radio label {
  margin: 10px 0 0px;
  width: 100%;
}

.info-from form span.inputs.form-group.radio span.radio input {
  width: 16px;
  height: 16px;
}

.info-from form span.inputs.form-group.radio span.radio {
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-from form span.inputs.form-group.radio .form-check {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-from form span.inputs.form-group.radio .form-check input {
  width: 14px;
  height: 14px;
  border-radius: 50px;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.info-from form span.inputs.form-group.radio .form-check label.form-check-label {
  width: auto;
  margin: 0;
  font-size: 13px;
}

.top-box .boxes .box {
  position: relative;
}

.top-box .boxes .box a {
  position: absolute;
  right: 0;
  bottom: 0;
}

.top-box .boxes .box span.count {
  margin: 0 0 60px;
}

.info-from form span.inputs.form-group.radio div#inputContainer {
  width: 100%;
}

.info-from form div#form-container .form-group .custom-dropdown label {
  color: #000000;
  font-size: 13px;
  display: block;
  margin: 0 0 4px;
  font-weight: 400;
  text-transform: capitalize;
}

.popupinner span.close {
  position: absolute;
  right: 10px;
  top: 4px;
  color: #000;
  cursor: pointer;
}

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

.top_part.chat_bot_code .Request-chatbot-code {
  padding: 0;
}


.top_part.chat_bot_code {
  border: 0 !important;
  overflow: hidden;
}
/* .info-from form ul#fileList {
  padding: 14px;
  margin: 0;
  width: 29%;
  border: 1px solid #ccc;
  border-radius: 6px;
  max-height: 165px;
  overflow: auto;
  margin: 21px 0 0;
} */

.info-from form ul#fileList {
  padding: 8px 15px;
  margin: 0;
  width: calc(50% - 5px);
  border: 1px solid #ccc;
  border-radius: 6px;
  max-height: 164px;
  overflow: auto;
  margin: 22px 0 0;
}


.explainer-video video {

  width: 100%;

}



.top-box .boxes .box .explainer-video h4 {

margin: 0 0 0;

padding: 10px;

font-size: 19px;

color: #1a1a69;

font-weight: 600;

}

/* .info-from form span.inputs.form-group.files {
  width: 70%;
} */

.info-from form span.inputs.form-group.files {
  width: calc(50% - 5px);
}
.info-from form ul#fileList li {
  list-style: none;
}

.info-from form ul#fileList li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 5px;
  padding: 0 0 5px;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
}

.info-from form ul#fileList li button {
  border: 0;
  font-size: 14px;
  padding: 4px 15px;
  border-radius: 5px;
  color: #fff;
  background: #ffffff;
  border: 1px solid #fe0909;
}

.info-from form ul#fileList li:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.top-box .boxes .box a.Manufacturer {

  position: absolute;

  bottom: 0;

  right: 0;
}
.info-from form span.inputs p {
  font-size: 13px;
}

.tooltip {
  position: absolute;
  bottom: 120%;
  left: 0;
  transform: translateX(-50%);
  background-color: rgb(5 5 54);
  color: white;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.button-container:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.button-container {
  position: relative;
}

.table-data-main .box table.table-data td .actions-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-data-main .box table.table-data td .actions-buttons button {
  background-color: #ffffff00;
  border: 0px solid #f37b1c;
  padding: 0px 0px;
  cursor: pointer;
  color: #000000;
  border-radius: 50px;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.table-data-main .box table.table-data td .actions-buttons button img {
  width: 20px;
}
.chatwidth{
  min-width: 300px
}

.Subscription_Management_view_detail .details {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}
.Subscription_Management_view_detail .details .data {
  width: calc(50% - 15px);
}
.Subscription_Management_view_detail .details .data label {
  display: block;
  margin: 0 0 5px;
}
.Subscription_Management_view_detail .details .data span {
  background: #f1f1f1;
  width: 100%;
  display: block;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
}
.Subscription_Management_view_detail .details .data span.Active {
  color: green;
}

div.view-model .modal-dialog {
  width: 100%;
  max-width: 60%;
}

div.view-model .modal-dialog .modal-header {
  background: #050536;
  justify-content: space-between;
}

div.view-model .modal-dialog .modal-header button.close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  padding: 0;
  line-height: 0;
}

div.view-model .modal-dialog .modal-body {
  color: #222;
  font-size: 14px;
}

div.view-model .modal-dialog .modal-header h5#exampleModalCenterTitle {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  }
  
  div.view-model .modal-dialog .modal-header button.close {
  color: #000;
  font-size: 26px;
  }
  
  div.view-model .modal-dialog .modal-header {
  background: #ffffff !important;
  color: #000;
  padding: 10px 15px;
  }

  .totals p strong {
    min-width: 100px;
    display: inline-block;
    text-align: left;
}

.totals p span {
    display: inline-block;
    min-width: 100px;
}

.totals {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 6px;
}


.subscription-plan-main .side-by-side {
  flex-wrap: wrap;
  gap: 15px;
}

.subscription-plan-main .side-by-side .plan {width: Calc(30% - 10px) !important;}

.subscription-plan-main .side-by-side  .plan.payment_history_table {
  width: calc(70% - 10px) !important;
}

.box.info-data .info-from .plan span.id span.Subscriptionplan {
  display: block;
  font-size: 14px;
}

.box.info-data .info-from .plan table.table-data.table_multi_data th {
  min-width: 140px;
}

.box.info-data .info-from .plan table.table-data.table_multi_data td {
  min-width: 200px;
}

.box.info-data .info-from .plan table.table-data.table_multi_data td:last-child {
  min-width: 50px;
  max-width: 50px !important;
}

.box.info-data .info-from .plan table.table-data.table_multi_data th:last-child {
  max-width: 50px;
  min-width: 50px;
}

.table-data-main .box .top_part .table-actions .actions-left form.search select {
  border: 1px solid #d0d5dd;
  padding: 8px 10px 8px 10px;
  color: #050536;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  width: 200px;
  margin-right: 10px;
}
/* -------------- */



/* responsive_css_start */


/* responsive_css_start */

@media(max-width:1440px){
  .info-from form .button button {
    font-size: 12px;
    font-weight: 400;
}

.box.info-data .info-from .plan {
  width: Calc(50% - 10px);
}
}

@media(max-width:1360px){
  .info-from form .inputs.multiple .input-container .input-wrapper {
    position: relative;
    width: Calc(50% - 7px);
}

.files input {
  padding: 80px 38% !important;
}

}

@media(max-width:1190px){
  .info-from form .inputs.multiple .input-container .input-wrapper {
    position: relative;
    width: Calc(100% - 0px);
}

.box.info-data .info-from.color-form span.inputs {
  width: 23%;
}

.popupinner {
  width: 80%;
}
div#exampleModalCenter {
  z-index: 9999;
}

.table_data_main_responsive th {
  min-width: 160px;
}

}


@media(max-width:991px){
  .sidebar.close .text {
    opacity: 1;
}

.sidebar.close ~ .Right_part {
    left: 56px;
    width: calc(100% - 56px);
}

.main {
    padding: 15px;
}

.sidebar {
    width: 56px;
}

.Right_part {
    left: 56px;
    width: calc(100% - 56px);
}

.sidebar.close {
    width: 250px;
}

.sidebar .logo-top span.toggle i.fa {
  transform: rotate(180deg);
}

.sidebar.close .logo-top span.toggle i.fa {
  transform: rotate(0deg);
}

.box.info-data .info-from.color-form span.inputs {
  width: 20%;
}

.Subscription_Management_view_detail .details .data {
  width: calc(50% - 15px);
}

.Subscription_Management_view_detail .details .data label {
  font-size: 12px;
}

.Subscription_Management_view_detail .details .data span {
  font-size: 12px;
}


}

@media(max-width:767px){
  .site_header {
    padding: 15px;
}

.site_header .header-inner .page-title h2 {
    font-size: 14px;
}

.main .user-name h3.heading {
    font-size: 16px;
}

.main .user-name p {
    font-size: 12px;
}

.top-box .boxes {
    gap: 10px;
}

.top-box .boxes .box {
    width: 100%;
}

.top-box .boxes .box .explainer-video h4 {

  margin: 0 0 0;

  padding: 10px;

  font-size: 19px;

  color: #1a1a69;

  font-weight: 600;

}


.subscription-plan-main .side-by-side .plan {
  width: 100% !important;
}

.subscription-plan-main .side-by-side .plan.payment_history_table {
  width: 100% !important;
}



.explainer-video video {

    width: 100%;

}

.info-from form span.inputs.form-group.files span.document {

  position: absolute;

  bottom: -30px;

  left: 0;

}

.table-data-main .box .top_part .table-actions .actions-left form.search select {
  width: 100%;
  margin: 0 0 10px;
  font-size: 12px;
}

.table-data-main .box .top_part .table-actions .actions-left span.search button {
  top: auto;
  bottom: 0;
}



.tooltip {

  position: absolute;

  bottom: 120%;

  left: 0;

  transform: translateX(-50%);

  background-color: rgb(5 5 54);

  color: white;

  padding: 6px 10px;

  font-size: 14px;

  border-radius: 5px;

  white-space: nowrap;

  opacity: 0;

  visibility: hidden;

  transition: opacity 0.3s, visibility 0.3s;

}



.button-container:hover .tooltip {

  opacity: 1;

  visibility: visible;

}



.button-container {

  position: relative;

}



.table-data-main .box table.table-data td .actions-buttons {

  display: flex;

  align-items: center;

  gap: 8px;

}



.table-data-main .box table.table-data td .actions-buttons button {

  background-color: #ffffff00;

  border: 0px solid #f37b1c;

  padding: 0px 0px;

  cursor: pointer;

  color: #000000;

  border-radius: 50px;

  align-items: center;

  font-size: 18px;

  font-weight: 500;

  transition: 0.3s;

}



.table-data-main .box table.table-data td .actions-buttons button img {

  width: 20px;

}



div.view-model .modal-dialog {

  width: 100%;

  max-width: 95%;

}



div.view-model .modal-dialog .modal-header {

  background: #050536;

  justify-content: space-between;

}



div.view-model .modal-dialog .modal-header button.close {

  background: transparent;

  border: 0;

  color: #020202;

  font-size: 20px;

  padding: 0;

  line-height: 0;

}



div.view-model .modal-dialog .modal-body {

  color: #222;

  font-size: 14px;

}





/* -------------- */
/* responsive_css_start */



@media(max-width:1440px){

  .info-from form .button button {

    font-size: 12px;

    font-weight: 400;

}



.box.info-data .info-from .plan {

  width: Calc(50% - 10px);

}

}

.top-box .boxes .box .top .icon {
  width: 50px;
  height: 45px;
  padding: 10px;
}

.top-box .boxes .box h3 {
    font-size: 14px;
}

.top-box .boxes .box span.count {
    margin: 0 0 35px;
    font-size: 22px;
}

.top-box .boxes .box span.count.date-time {
    font-size: 15px;
    margin: 0 0 50px;
}

.top-box .boxes .box a {
    font-size: 12px;
    padding: 6px 10px;
}

.sidebar .logo-top .toggle {
  height: 20px;
  width: 20px;
}

.box.info-data .top_part {
  padding: 8px;
}

.box.info-data .top_part h2 {
  font-size: 14px;
}

.info-from form span.inputs {
  width: 100%;
}

.info-from form .inputs.multiple {
  width: 100%;
}

.info-from form .inputs.multiple .input-container .input-wrapper {
  width: 100%;
}

.info-from form span.inputs.form-group.files {
  width: 100%;
}

.files input {
  padding: 65px 10% !important;
}

.files:before {
  font-size: 8px;
}

.files:after {
  width: 32px !important;
  height: 32px !important;
}

.info-from form ul#fileList {
  margin: 0 0 0;
  width: 100%;
}

.info-from form ul#fileList li {
  font-size: 12px;
}

.info-from form ul#fileList li button {
  font-size: 12px;
  padding: 4px 10px;
}

.box.info-data .top_part p {
  font-size: 12px;
}

.info-from form div#form-container .form-group {
  flex-wrap: wrap !important;
}

.info-from form div#form-container .form-group .custom-dropdown {
  width: 100%;
  margin: 0 0 0px;
  border-bottom: 1px solid #ccc;
  padding: 0 0 15px;
}

.info-from form .button {
  gap: 2px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 0;
}

.info-from form .button button {
  margin: 0;
  padding: 10px 30px;
}

.table-data-main .box .top_part {
  padding: 8px;
  gap: 6px;
}

.table-data-main .box .top_part .heading h2 {
  font-size: 14px;
}

.table-data-main .box .top_part .heading p {
  font-size: 12px;
}

.table-data-main .box .top_part .table-actions {
  width: 100%;
}

.table-data-main .box .top_part .table-actions .actions-left span.search {
  margin: 0;
  width: 100%;
}

.table-data-main .box table.table-data th {
  padding: 6px;
  font-size: 12px;
}

.table-data-main .box table.table-data td {
  padding: 6px;
  font-size: 12px;
}

.table-data-main .box table.table-data {
  overflow: scroll;
}

.table-data-main .box .top_part .table-actions .actions-left span.search input {
  font-size: 12px;
  width: 100%;
  padding: 6px 45px 6px 8px;
}

.table-data-main .box .top_part .table-actions .actions-left span.search button {
  padding: 9px;
}

.table-data-main .pagination {
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}

.table-data-main .pagination button {
  font-size: 10px;
}

.info-from form span.inputs select {
  font-size: 12px;
  padding: 8px;
}

.info-from form div#form-container .form-group .custom-dropdown button.dropdown-btn {
  font-size: 12px;
  padding: 8px;
}

.box.info-data .info-from.color-form span.inputs {
  width: Calc(50% - 5px);
}

.top_part.chat_bot_code {
  flex-wrap: wrap;
  gap: 5px;
}

.Request-chatbot-code button#ChatbotCode {
  font-size: 12px;
  padding: 9px 20px;
}

.top_part.chat_bot_code .Request-chatbot-code {
  width: 100%;
}

.bot-code .top {
  padding: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.bot-code .top h2 {
  font-size: 14px;
}

.bot-code .top span.copy {
  font-size: 12px;
}

.bot-code {
  margin: 5px;
}

.bot-code .Code {
  max-height: 400px;
}

.box.info-data .info-from .plan {
  margin: 0 0 0;
  width: 100%;
}

.box.info-data .info-from .buttons {
  margin: 10px 0 0;
  padding: 10px 0 0;
  display: flex;
  align-items: center;
}

.box.info-data .info-from .buttons button {
  padding: 10px 20px;
  font-size: 12px;
}

.box.info-data .info-from .plan span.heading {
  margin: 0 0 10px;
  font-size: 14px;
}

.box.info-data .info-from .plan span.heading span.small {
  font-size: 12px;
}

.box.info-data .info-from .plan span {
  font-size: 14px;
}

.info-from form.add_product span.inputs {
  width: 100%;
}

.info-from form div#form-container .form-group button.remove-btn {
  top: auto;
  width: 30px;
  padding: 0;
  height: 30px;
  font-size: 16px;
}

.top_part.Product_heding .heading button {
  margin: 0;
  font-size: 12px;
  padding: 5px 10px;
}

.top_part.Product_heding .heading {
  flex-wrap: wrap;
  gap: 5px;
}

.top_part.Product_heding .heading .button {
  display: flex;
  gap: 3px;
}

.box.info-data .info-from .plan span.id {
  display: flex;
  flex-direction: column;
}

.info-from form span.inputs.form-group.files input#fileUpload {
  padding: 80px 10% !important;
}
.uploaded-doc img {
  max-width: 500px;
  width: 100%;
  height: 110px;
}

.email-popup span.inputs {
  width: 100%;
}

.Subscription_Management_view_detail .details .data {
  width: 100%;
}

}