@import url("../fonts/fonts.css");

* {
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  /* font-family: "Rubik", sans-serif; */
  font-family: "Museo Sans", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  transition: opacity 0.5s 0.3s ease-in-out;
  background: #f2f2f2;
  background: #f5f9fd;
}

body.menu-show {
  position: relative;
  overflow: hidden;
}

a,
li {
  text-decoration: none;
  list-style-type: none;
}
a:hover,
li:hover {
  text-decoration: none;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
  outline: none;
}

button {
  border: none;
  outline: none;
}

.btn {
  font-weight: 500;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
  border: none;
}

.btn:focus {
  box-shadow: none;
}

.btn.primary-btn {
  color: #ffffff;
  background: linear-gradient(90deg, #04a5fb 0%, #003edc 100%);
}

.btn.primary-btn:hover {
  background: linear-gradient(90deg, #003edc 0%, #04a5fb 100%);
}

.btn.btn-save {
  background: #00cb18;
  border-radius: 4px;
  padding: 4px 16px;
  color: #ffffff;
  font-weight: 400;
}

.btn.btn-save:hover {
  background: #06161d;
  color: #ffffff;
}

.btn.btn-create,
.btn.outline-btn {
  border-radius: 8px;
  padding: 9px 24px;
  font-size: 13px;
  font-weight: 400;
}

.btn.btn-create {
  background: #24b703;
  background: #2563eb;
  color: #ffffff;
  border: 1px solid transparent;
}

.btn.btn-create:hover {
  background: #06161d;
  color: #ffffff;
}

.btn.outline-btn {
  background: #ffffff;
  color: #000000;
  border: 1px solid #00000038;
}

.links {
  color: #4f619e;
}

.links:hover {
  color: #003edc;
}

h1 {
  font-size: 21.5px;
  font-weight: 600;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12.5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #232323;
}

.container {
  width: 100%;
  max-width: 1206px;
  padding: 0 15px;
  margin-right: auto;
  margin-left: auto;
}

.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  flex-wrap: wrap;
}

.font-9 {
  font-size: 9px;
}

.font-10 {
  font-size: 10px;
}

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

.font-14 {
  font-size: 14px;
}

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}

.font-26 {
  font-size: 26px;
}

.font-28 {
  font-size: 28px;
}

.font-30 {
  font-size: 30px;
}

.font-300 {
  font-weight: 300;
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 700;
}

.font-800 {
  font-weight: 800;
}

.font-900 {
  font-weight: 900;
}

.secondary-text {
  color: #ffe055;
}

.text-red {
  color: #d55f5a !important;
}

.text-fail {
  color: #ff0000 !important;
}

.text-fail:before {
  background-color: #ff0000 !important;
}

.text-light-grey {
  color: #757575;
}

.text-light-black {
  color: #232323;
}

.text-blue {
  color: #04a5fb;
}

.text-ellipses {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card {
  box-shadow: unset;
  border: 1px solid #00000038;
  border-radius: 8px;
  background: #ffffff;
}

.wp-15 {
  width: 15%;
}

.w50 {
  width: 50px;
}

.w100 {
  width: 100px;
}

.w200 {
  width: 200px;
}

.radius-top0 {
  border-radius: 0 0 20px 20px;
}

.radius-bottom0 {
  border-radius: 20px 20px 0 0;
}

@media (min-width: 768px) {
  .text-md-nowrap {
    white-space: nowrap;
    /* Allows wrapping */
  }
}

@media only screen and (min-width: 768px) {
  .width100 {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .navbar,
  main {
    margin-left: 220px;
  }
  .main .navbar,
  .main main {
    margin-left: 0;
  }
}
.menu-show {
  transition: transform 0.5s ease;
}
.menu-show .navbar-toggler {
  padding: 0;
  border: 0;
}
.menu-show .navbar-toggler span {
  position: relative;
  display: block;
  width: 25px;
  height: 2px;
  background-color: transparent;
}
.menu-show .navbar-toggler span::before {
  transform: rotate(45deg);
}
.menu-show .navbar-toggler span:after {
  transform: rotate(-45deg);
}
.menu-show .sidebar {
  opacity: 1;
  left: 0;
}

.navbar-toggler {
  position: relative;
  padding: 0;
  border: 0;
  z-index: 11;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler span {
  position: relative;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #000;
  transition: transform 0.5s ease;
}
.navbar-toggler span:before,
.navbar-toggler span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.navbar-toggler span::before {
  transform: translateY(-8px);
}
.navbar-toggler span:after {
  transform: translateY(8px);
}

main {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  main {
    margin-top: 180px;
  }
}

@media only screen and (max-width: 767px) {
  .multiselect {
    flex-wrap: wrap;
  }
}
.multiselect .chosen-choices {
  padding: 5px;
  border-radius: 8px;
  height: 200px;
  border: 1px solid #cccccc;
  background-image: unset;
  margin-bottom: 20px;
}
.multiselect .chosen-container.chosen-container-multi {
  width: 100% !important;
  margin-right: 40px;
}
@media only screen and (max-width: 767px) {
  .multiselect .chosen-container.chosen-container-multi {
    margin-right: 0;
  }
}
.multiselect .chosen-container.chosen-container-multi .chosen-search-input {
  width: 100% !important;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
  /* box-shadow: 0px 4px 20px 0px rgba(238, 238, 238, 0.5019607843);
  background: #f5f9fd; */
  box-shadow: 0px 10px 20px 0px rgba(238, 238, 238, 0.601961);
  background: #fafafa;
}
@media only screen and (min-width: 992px) {
  .navbar {
    width: calc(100% - 13.75rem);
  }
  .main .navbar {
    width: 100%;
  }
}
.navbar-trends {
  position: relative;
  background: #e7efff;
  padding: 10px 12px;
}
.navbar-trends:after {
  content: "";
  position: absolute;
  right: 0;
  width: 20px;
  height: 100%;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-trends {
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar-trends {
    width: 100%;
  }
}
.navbar .logged-in-user {
  color: #000 !important;
  font-size: 12px;
  font-weight: 500;
  padding: 0 5px 0 15px;
}
@media screen and (max-width: 991px) {
  .navbar .logged-in-user {
    font-size: 10px;
  }
}
.navbar-menu .marquee.marqueeone {
  display: inline-block;
  animation: marquee 10s linear infinite;
}
.navbar-menu .marquee-item {
  color: #101010;
  font-weight: 500;
}
.navbar-menu .marquee-item .bordericon {
  position: relative;
}
.navbar-menu .marquee-item .bordericon:before {
  content: "";
  display: inline-block;
  position: absolute;
  right: -12px;
  top: 0;
  border: 0.3em solid transparent;
}
.navbar-menu .marquee-item .bordericon.decreaseicon:before {
  border-top: 0.4em solid #dc3545;
}
.navbar-menu .marquee-item .bordericon.increaseicon:before {
  border-bottom: 0.4em solid #198754;
}
.navbar-menu .btn-cta-facebook {
  border: 1px solid #0062e0;
  background: #0062e0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
}
.navbar-menu .btn-cta-facebook:hover {
  background: #0058ca;
  color: #fff;
}
.navbar-menu .notify {
  border-left: 1px solid #849aa9;
  border-right: 1px solid #849aa9;
  padding: 4px 10px;
}
.navbar-menu .user-login-detail h6,
.navbar-menu .user-login-detail span {
  color: #757575;
}
.navbar-log {
  width: 100%;
  box-shadow: unset;
}
@media only screen and (max-width: 767px) {
  .navbar-log {
    background-color: #495a97;
  }
}
.navbar-log .navbar-wrap {
  width: 100%;
  max-width: 1230px;
  padding: 0 15px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 1440px) {
  .navbar-log .navbar-wrap {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .navbar-log .navbar-wrap .navbar-brand img {
    width: 150px;
  }
}
.navbar-log .navbar-wrap .navbar-toggler.collapsed span {
  background-color: #fff;
}
.navbar-log .navbar-wrap .navbar-toggler span {
  background-color: transparent;
}
.navbar-log .navbar-wrap .navbar-toggler span:before,
.navbar-log .navbar-wrap .navbar-toggler span:after {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .navbar-log .navbar-wrap .navbar-nav {
    position: absolute;
    width: 100%;
    left: 0;
    background: #495a97;
    padding: 20px 0 0;
    height: 100vh;
  }
}
.navbar-log .navbar-wrap .navbar-nav .nav-item .nav-link {
  color: #878a99;
  font-weight: 500;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .navbar-log .navbar-wrap .navbar-nav .nav-item .nav-link {
    padding: 15px 20px;
  }
}
.navbar-log .navbar-wrap .navbar-nav .nav-item .nav-link:hover,
.navbar-log .navbar-wrap .navbar-nav .nav-item .nav-link.active {
  font-weight: 700;
}

.sidebar {
  position: fixed;
  top: 0;
  /* background: linear-gradient(180deg, #4F619E 0%, #374884 100%); */
  background: #fafafa;
  border-right: 1px solid rgba(0, 0, 0, 0.1019607843);
  width: 13.75rem;
  transition: all linear 0.5s;
}
@media only screen and (max-width: 991px) {
  .sidebar {
    left: -100%;
    opacity: 0;
    z-index: 10;
  }
}
.sidebar-menu {
  overflow-y: auto;
  padding: 50px 20px 20px;
  height: calc(100vh - 50px);
}
.sidebar-menu::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}
.sidebar-menu::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}
.sidebar-menu::-webkit-scrollbar-thumb {
  background-color: #757575;
}
.sidebar .bdr-bottom {
  padding-bottom: 22px;
  border-bottom: 1px solid #849aa9;
}
.sidebar-menu-list {
  text-transform: capitalize;
}

.sidebar-menu-list.dark-bg {
  background: rgba(9, 11, 19, 0.2117647059);
}
.sidebar-menu-list .menu-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.sidebar-menu-list-item {
  display: flex;
  align-items: center;
  color: #465061;
  font-size: 14px;
  font-weight: 500;
  border: 0;
  box-shadow: unset;
  margin: 8px 0;
  border-radius: 8px;
  box-shadow: none;
  padding: 8px 8px;
}
.sidebar-menu-list-item .img2 {
  display: none;
}
.sidebar-menu-list-item:hover,
.sidebar-menu-list-item.active {
  /* background-color: color(srgb 1 1 1/0.1); */
  color: #374151;
}
.sidebar-menu-list-item.active {
  background-color: rgb(239, 246, 255);
  border-right: 2px solid #2563eb;
  border-radius: 6px;
  color: #1d4ed8;
}
.sidebar-menu-list-item:hover .img1,
.sidebar-menu-list-item.active .img1 {
  display: none;
}
.sidebar-menu-list-item:hover .img2,
.sidebar-menu-list-item.active .img2 {
  display: block;
}
.sidebar-menu-list-item:last-child {
  margin: 0;
}
.sidebar-menu-list-item.collapsable.active {
  background-color: transparent;
}
.sidebar-menu-list-item.collapsable.active:after,
.sidebar-menu-list-item.collapsable:hover:after {
  color: #fff;
}
.sidebar-menu-list-item.collapsable:after {
  content: "\f106";
  color: #a0a9cb;
  font-family: FontAwesome;
  background-image: unset;
  margin-left: auto;
}
.sidebar-menu-list-item.collapsable.collapsed:after {
  transform: rotate(-180deg);
}
.sidebar-menu-list-sub {
  padding-left: 1rem;
  margin-bottom: 0;
  position: relative;
}
.sidebar-menu-list-sub:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 2px;
  height: 84%;
  background-color: #fff;
}
.sidebar-menu-list-sub li {
  position: relative;
  margin-bottom: 6px;
}
.sidebar-menu-list-sub li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -16px;
  width: 14px;
  height: 2px;
  border: 10px solid transparent;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 25px 25px 0px 25px;
}
.sidebar-menu-list-sub li a {
  display: block;
  color: #a0a9cb;
  font-size: 11px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
}
.sidebar-menu-list-sub li a.active,
.sidebar-menu-list-sub li a:hover {
  color: #fff;
}
.sidebar-menu-list-sub li a.active {
  background-color: color(srgb 1 1 1/0.1);
}
.sidebar-menu-list-sub li a:hover {
  background: rgba(9, 11, 19, 0.1019607843);
}

.highcharts-figure svg {
  font-family: "Museo Sans", sans-serif;
}

table {
  font-size: 14px;
  font-weight: 400;
}
table.table thead {
  /* border-bottom: 1px solid #e4e2e4; */
  border-bottom: 1px solid #eeeeee;
}
table.table thead tr {
  border-bottom: 1px solid #e4e2e4;
  border-bottom: 1px solid #eeeeee;
}
table.table thead tr {
  /* border-top: 1px solid #e4e2e4; */
  /* border-top: 1px solid #eeeeee; */
}
table.table thead tr th {
  color: #000000;
  color: #64748b;
  font-weight: 500;
}
table.table th,
table.table td {
  padding: 15px;
  vertical-align: middle;
  /* border-bottom: 1px solid #e4e2e4; */
  border-bottom: 1px solid #eeeeee;
}
table.table th {
  /* border-bottom: 1px solid #e4e2e4; */
  border-bottom: 1px solid #eeeeee;
}

table.table th,
table.table td {
  /* border-right: 1px solid #e4e2e4; */
  /* border-right: 1px solid #eeeeee; */
}
table.table th:first-child,
table.table td:first-child {
  /* border-left: 1px solid #e4e2e4; */
  /* border-left: 1px solid #eeeeee; */
}

table.table td {
  color: #5a5d6c;
  color: #020817;
  font-weight: 300;
}
table.table.stripe.dataTable tr:nth-of-type(even) {
  background-color: #fcfcfc;
  background-color: transparent;
}
table.table .table-cta {
  color: inherit;
}
table.table .table-cta:hover {
  color: #0000ff;
}
table.table > :not(:first-child),
table div.dt-scroll-body {
  border: 0;
}
table.table.stripe.dataTable thead tr:nth-of-type(even) {
  background: transparent;
}

table.table.dataTable.table-hover > tbody > tr:hover > * {
  box-shadow: inset 0 0 0 9999px #f8fafc;
}
.text-overflow {
  max-width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Dropdown */
.dropdown-toggle:after {
  content: "\f107";
  color: #ffffff;
  font-family: FontAwesome;
  border: unset;
}
.dropdown-menu {
  font-size: 13px;
  background: linear-gradient(0deg, #06161d, #06161d),
    linear-gradient(90deg, rgba(4, 165, 251, 0) 0%, rgba(0, 62, 220, 0.2) 100%);
  background: #2563eb;
  border: unset;
}
.dropdown-menu li .dropdown-item {
  color: #fff;
}
.dropdown-menu li .dropdown-item:hover {
  background-color: color(srgb 1 1 1/0.1);
}

.pagination {
  font-size: 14px;
}
.pagination .dt-paging-button.page-item {
  margin-right: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.pagination .dt-paging-button.page-item .page-link {
  color: #000000;
  border-radius: 8px;
}
.pagination .page-item.active .page-link,
.pagination .page-item:hover .page-link {
  color: #fff;
  background: linear-gradient(0deg, #06161d, #06161d),
    linear-gradient(90deg, rgba(4, 165, 251, 0) 0%, rgba(0, 62, 220, 0.2) 100%);
  border: 1px solid #fff;
}

.disc li {
  list-style: disc;
}

.num li {
  list-style: auto;
}

.lh-16 {
  line-height: 1.6;
}

.datepicker-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px !important;
  padding: 0.575rem 1rem 0.575rem 0.75rem;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.0125em;
  text-transform: none;
  font-family: "Museo Sans", sans-serif;
  color: rgb(34, 13, 78);
}
.status {
  border-radius: 8px;
  padding: 4px 8px;
  width: 80px;
  text-align: center;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}
.status span::before {
  content: "";
  width: 4px;
  height: 4px;
  line-height: 4px;
  display: inline-block;
  border-radius: 10px;
  margin-right: 4px;
  margin-bottom: 3px;
}
.status.active {
  background: #ebf7ed;
  color: #075e45;
}
.status.active span::before {
  background: #075e45;
}
.status.inactive {
  background: #fff1f1;
  color: #ff0000;
}
.status.inactive span::before {
  background: #ff0000;
}
.status.closed {
  background: #e7e7e7;
  color: #000000;
}
.status.closed span::before {
  background: #000000;
}
/* App Listing */
.app-listing .card a {
  color: #000000;
}
.app-img {
  width: 58px;
  border-radius: 10px;
}
.app-info p {
  color: #000000;
}
.vscomp-toggle-button {
  border: 1px solid #b7b7b7;
  border-radius: 8px;
}
.vscomp-wrapper.focused .vscomp-toggle-button,
.vscomp-wrapper:focus .vscomp-toggle-button {
  border: 1px solid #2280ef;
}
/* change Passowrd */
.password-toast {
  color: #000;
  font-size: 14px;
  background: rgba(16, 216, 36, 0.0588235294);
  border: 1px solid #10d824;
}
.form .form-label {
  color: #000000;
  margin-bottom: 5px;
}

.form .form-control {
  /* font-size: 13px; */
  border: 1px solid #00000038;
  padding: 10px 16px 10px 16px;
  border-radius: 8px;
  margin: 0px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.0125em;
  text-transform: none;
  font-family: "Museo Sans", sans-serif;
  color: rgb(34, 13, 78);
  /* max-width: 200px; */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form.cp-form .form-control {
  padding-right: 50px;
}

.form .form-control:focus {
  border: 1px solid #000000;
}

.form .cp-form-pass {
  cursor: pointer;
  margin-left: -48px;
}

.page-head {
  position: relative;
  margin-bottom: 55px;
}
@media only screen and (min-width: 992px) {
  .page-head-img {
    margin-top: -92px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-head-img {
    margin-top: -100px;
  }
}
@media only screen and (max-width: 767px) {
  .page-head-img {
    height: 250px;
    object-fit: cover;
  }
}
.page-head-desc {
  position: absolute;
  bottom: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .page-head-desc {
    bottom: 30%;
  }
}
.page-head-desc h1 {
  font-size: 36px;
}
.page-head .breadcrumb li {
  color: #fff;
}
.page-head .breadcrumb li a {
  color: rgba(255, 255, 255, 0.38);
}

/* Content Wrapper */
.content-wrapper {
  background: #f2f2f2;
  background: #f5f9fd;
}
.page-title {
  margin: 10px 0 5px 0;
  color: #000000;
  letter-spacing: 2%;
  text-transform: capitalize;
}
.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item.active a {
  color: #615f5f;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #003edc;
}
.user-login {
  /* background: linear-gradient(0deg, #06161d, #06161d),
    linear-gradient(90deg, rgba(4, 165, 251, 0) 0%, rgba(0, 62, 220, 0.2) 100%);
    background: linear-gradient(90deg, #9333ea, #2563eb); */
  border: 1px solid #ffffff40;
  border-radius: 26px;
  padding: 7px 16px 7px 12px;
  color: #000000;
  text-align: left;
}
.dropdown-toggle.user-login::after {
  color: #000000;
}
.user-login:hover {
  color: #000000;
}
.user-login img {
  /* background: linear-gradient(180deg, #04a5fb 0%, #003edc 100%); */
  border-radius: 50px;
  padding: 5px;
}
.user-login-detail h6 {
  color: #000000;
  font-weight: 400;
}
.user-login-detail h6,
.user-login-detail span {
  text-transform: capitalize;
}

/* insights */
.insights .card {
  padding: 25px 20px;
  box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.insights .card .card-info p {
  color: #248eff;
  color: #3b82f6;
  font-weight: 500;
  font-size: 14px;
  /* margin-top: 15px; */
}

.insights .card:hover {
  transition: all 0.2s ease-out;
}

.insights-points {
  font-weight: 500;
  font-size: 22px;
  /* margin-bottom: 0; */
}

.card-header:first-child {
  border-radius: 8px 8px 0 0;
}

.btn-icon {
  padding: 5px;
}

/* .insights .card .card-icon img {
  width: 35px;
} */

/* .border-btm {
  border-bottom: 1px solid #00000038;
} */

.card-rawData ul li {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid #00000038;
  min-height: 46px;
}
.card-rawData ul li:last-child {
  border-bottom: 0;
}
.card-rawData ul li a {
  display: none;
}

.card-rawData ul li:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.card-rawData ul li:hover a {
  display: block;
}

.card-rawData .btn-save {
  background: #2563eb;
  color: #ffffff;
  font-size: 14px;
}
.card-rawData .btn-save:hover {
  background: #000000;
  color: #ffffff;
}

.selection-mmp-guide {
  background-color: rgb(239, 246, 255);
  padding: 2px 10px;
  display: inline-block;
  border: 0.5px solid #2563eb;
  color: #1d4ed8;
  font-size: 13px;
  border-radius: 16px;
}

.form-select {
  width: auto;
  /* font-size: 13px; */
  border: 1px solid #e2e8f0;
  padding: 0.575rem 2.25rem 0.575rem 0.75rem;
  border-radius: 8px !important;
  margin: 0px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.0125em;
  text-transform: none;
  font-family: "Museo Sans", sans-serif;
  color: rgb(34, 13, 78);
  /* max-width: 200px; */
  /* overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
}

.select2-container--default .select2-selection--single {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}
.select2-container .select2-selection--single,
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 39.73px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  right: 6px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 39px;
  color: rgb(34, 13, 78);
  padding-left: 0.75rem;
}

.form-select:focus {
  box-shadow: none;
  border: 1px solid #000000;
}

#table tfoot {
  display: table-header-group;
  background-color: #f0f0f0;
  font-weight: bold;
}

/* table Dropdown */
.table-dropdown.dropdown-menu {
  background: transparent;
}
.table-dropdown.dropdown-menu .select2-container {
  display: block;
  min-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Login Form */
.login {
  background: linear-gradient(0deg, #06161d, #06161d),
    linear-gradient(180deg, rgba(4, 165, 251, 0) 0%, rgba(0, 62, 220, 0.5) 100%);
  padding: 70px 50px;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.login .row {
  background: #00000080;
  backdrop-filter: blur(27.182817459106445px);
  box-shadow: 0px 0px 49px -2px #00000030;
  border-radius: 60px;
}
.login-wc-wrap {
  position: relative;
  background: linear-gradient(
    165.32deg,
    #7833f9 -12.76%,
    #00bcd4 53.41%,
    #0ca1c1 68.34%
  );
  box-shadow: 0px 0px 49px -2px #00000030;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  align-items: flex-start;
  border-radius: 60px;
  padding: 30px 50px;
  height: 647px;
  overflow: hidden;
}
.heading-login {
  position: relative;
}
.heading-login h1 {
  font-size: 45px;
  font-weight: 700;
  color: #ffffff;
}
.heading-login p {
  font-size: 20px;
  font-weight: 500;
}
.arrow-big {
  position: absolute;
  bottom: 0;
  right: 50px;
}
.login-gradient {
  position: absolute;
  right: 0;
  top: 0;
}
.login-lt {
  position: absolute;
  top: -16%;
  left: -12%;
}
.login-rt {
  position: absolute;
  right: 0;
  top: 10%;
  z-index: -1;
}
.login-btm {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 60px;
  height: 250px;
}

.login-form {
  max-width: 90%;
  margin: 0 auto;
}

.login-form label,
form .form-label {
  color: #fafafa;
  font-size: 15px;
  font-weight: 400;
}
.login-form input,
.login-form textarea {
  background: transparent;
  border: 1px solid #efefef36;
  border-radius: 8px;
  padding: 14px 16px;
  color: #ffffff;
  background-image: none !important;
}
.login-form input::-moz-placeholder,
.login-form textarea::-moz-placeholder {
  color: #fafafa;
  font-size: 15px;
}
.login-form input::placeholder,
.login-form textarea::placeholder {
  color: #fafafa;
  font-size: 15px;
  font-weight: 400;
}

.login-form input:focus,
.login-form textarea:focus {
  background: transparent;
  border: 1px solid #0386cd;
  box-shadow: none;
  outline: 0;
  color: rgb(255, 255, 255, 0.89);
}

.login-form .form-floating > .form-control:focus ~ label,
.login-form
  .form-floating
  > .form-control:not(:placeholder-shown):focus
  ~ label,
.login-form .form-floating > .form-select ~ label {
  opacity: 0.9;
  color: #0386cd !important;
}

/* .form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
} */
.login-form input.success,
.login-form textarea.success {
  border: 1px solid #10d824;
}
.login-form input.fail,
.login-form textarea.fail {
  border: 1px solid #ff0000;
}
.login-form-pwd {
  cursor: pointer;
  margin-left: -38px;
}

.errors {
  padding-left: 15px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}
.errors p {
  position: relative;
  margin: 5px 0;
}
.errors p:before {
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  background-color: #ff0000;
  border-radius: 100%;
}

/* .datepicker-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 12px;
  background-color: #fff;
  border-radius: 8px;
  padding: 112px;
} */
.copyright {
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  margin-top: 90px;
  font-weight: 300;
}

/* dt-layout buttons */
.dt-layout-cell .dt-buttons .dt-button {
  color: #000000;
  font-size: 14px;
  padding: 6px 15px;
  line-height: 20px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #00000038;
  letter-spacing: 0.0125em;
  text-transform: none;
  color: rgb(34, 13, 78);
}

.dt-layout-cell .dt-buttons .dt-button.buttons-collection {
  border: 1px solid #cccccc;
}

.dt-layout-cell .dt-buttons .dt-button.buttons-copy:hover {
  color: #2b0c4b;
  color: #fff;
  background-color: #8c3aff;
  box-shadow: 0px 2px 4.3px 0px #ad72ff inset;
  box-shadow: 0px -2px 2.5px 0px #753ac9 inset;
}
.dt-layout-cell .dt-buttons .dt-button.buttons-csv:hover {
  color: #fff;
  background-color: #00a419;
  box-shadow: 0px 2px 4.3px 0px #06f32a inset;
  box-shadow: 0px -2px 2.5px 0px #007412 inset;
}
.dt-layout-cell .dt-buttons .dt-button.buttons-csv {
  position: absolute;
}
.dt-layout-cell .dt-buttons .dt-button.buttons-pdf:hover {
  color: #fff;
  background-color: #ff0509;
  box-shadow: 0px 2px 4.3px 0px #ff9395 inset;
  box-shadow: 0px -2px 2.5px 0px #d00609 inset;
}
.dt-layout-cell .dt-buttons .dt-button.buttons-print:hover {
  color: #fff;
  background-color: #0f87e3;
  box-shadow: 0px 2px 4.3px 0px #86cbff inset;
  box-shadow: 0px -2px 2.5px 0px #0e62a2 inset;
}
.dt-layout-cell .dt-button-collection {
  background: #ffffff;
}
.dt-layout-cell .dt-button-collection .dt-button {
  border: none;
  background: #ffffff !important;
  box-shadow: none;
  border-radius: 0 !important;
}
.dt-layout-cell .dt-button-collection .dt-button:hover {
  border: none;
  background: #06161d !important;
  box-shadow: none;
  border-radius: 0 !important;
  color: #ffffff !important;
}
.dt-button-info {
  background: #06161d !important;
  color: #ffffff !important;
}

/* Modal*/
.modal .modal-header {
  background: #ffffff;
  border-bottom: 1px solid #f3f6f9;
  border-radius: 20px 20px 0 0;
}
.modal .modal-header h5 {
  font-size: 18px;
}

.modal.drawer {
  display: flex !important;
  pointer-events: none;
  top: 20px;
}
.modal.drawer * {
  pointer-events: none;
}
.modal.drawer .modal-dialog {
  margin: 0px;
  display: flex;
  flex: auto;
  transform: translate(25%, 0);
}
.modal .modal-dialog .modal-content {
  border: none;
  border-radius: 20px;
  background: #ffffff;
  border: none;
}
.modal.drawer .modal-dialog .modal-content {
  border-width: 1px 0px 1px 1px;
}

.modal .modal-footer {
  border-top: 1px solid #f3f6f9;
  border-radius: 0 0 20px 20px;
  flex-direction: row;
  justify-content: center;
}

.modal .btn {
  width: 47%;
  padding: 9px 24px;
  border-radius: 8px;
}

.modal p,
.modal form label {
  color: #757575;
}

.ca-form .form-label {
  color: #212529;
  font-size: 14px;
}

.modal form label {
  font-weight: 600;
  margin-bottom: 8px;
}

.ca-form label,
.ca-form .form-label {
  font-weight: 400;
  min-width: 40%;
  margin-bottom: 0;
  text-transform: capitalize;
}

.ca-form .form-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.modal form .form-control,
.ca-form .form-control,
.ca-form .form-select {
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 10px 16px;
}

.ca-form .form-select {
  width: 100%;
  max-width: 100%;
}

.ca-form .form-control::placeholder {
  color: rgba(117, 117, 117, 0.6);
  font-size: 12px;
}

.form-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ca-form .form-check {
  padding-left: 0;
}

.ca-form input[type="radio"] {
  opacity: 0;
  position: absolute;
  height: auto;
  width: auto;
  left: 0;
  z-index: 1;
}

.ca-form input.form-check-input {
  border: 1px solid #e0e0e0;
  padding: 0;
}

.ca-form .form-check-label {
  position: relative;
  padding: 10px 16px;
  display: block;
  font-size: 12px;
  font-weight: 400;
  background-color: transparent;
  border: 1px solid #cccccc;
  border-radius: 8px;
  text-align: center;
  color: #0000008c;
  min-width: 110px;
  cursor: pointer;
  margin-bottom: 0;
}

.ca-form input.form-check-input:checked[type="radio"] {
  background-image: none !important;
}

.ca-form input[type="radio"]:checked + label.form-check-label,
.ca-form input[type="radio"].checked:checked + label.form-check-label {
  background: #04a5fb0f;
  border: 1px solid #04a5fb;
  color: #04a5fb;
  font-weight: 500;
}

.ca-form input[type="radio"] + label.form-check-label span {
  display: none;
}

.ca-form input[type="radio"]:checked + label.form-check-label span {
  display: inline-block;
}

.btn-blue-gradient,
.btn-blueOutline {
  border: 1px solid #7c757e;
  color: #003edc;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  border-radius: 8px;
  width: 48.5%;
}

.btn-blue-gradient {
  background: linear-gradient(180deg, #04a5fb 0%, #003edc 100%);
  color: #ffffff;
  border: 1px solid #003edc;
}

.btn-blueOutline:hover {
  background: linear-gradient(180deg, #04a5fb 0%, #003edc 100%);
  color: #ffffff;
  border: 1px solid #003edc;
}

.btn-blue-gradient:hover {
  background: linear-gradient(180deg, #04a5fb 0%, #003edcdd 100%);
  color: #ffffff;
  border: 1px solid #003edc;
}

.image-source {
  width: 200px;
  height: 200px;
  border: 1px solid #b7b7b7;
  background: #fbf9f9;
  border-radius: 16px;
  margin: 50px auto 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  vertical-align: middle;
}

.image-source img {
  border-radius: 16px;
  text-align: center;
}

.ca-form .form-control {
  font-size: 15px;
}

.ca-form .form-group .symbol {
  position: absolute;
  top: 11px;
  left: 16px;
  color: #757575;
  font-size: 14px;
}

.pl-40 {
  padding-left: 40px !important;
}

.text-grey {
  color: #5a5d6c99;
}

.ca-form .fa-info {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  border: 1px solid #5a5d6c99;
  text-align: center;
  font-size: 10px;
  line-height: 17px;
}

.ca-form .form-flex.form-radio input.form-check-input:checked[type="radio"] {
  background-image: inherit;
}

.ca-form .form-flex.form-radio {
  flex-direction: row;
  flex-wrap: nowrap;
}

.ca-form .form-flex.form-radio .form-check {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ca-form .form-flex.form-radio input[type="radio"] {
  opacity: 1;
  position: inherit;
}

.ca-form .accordion-item:nth-of-type(2) label,
.ca-form .accordion-item:nth-of-type(2) .form-label,
.ca-form .accordion-item:last-child label,
.ca-form .accordion-item:last-child .form-label {
  min-width: auto;
  width: 30%;
}

.ca-form .accordion-item:nth-of-type(2) .form-flex.form-radio label,
.ca-form .accordion-item:nth-of-type(2) .form-flex.form-radio .form-label {
  min-width: 40%;
}

.ca-form
  .accordion-item:nth-of-type(2)
  .form-flex.form-radio
  .form-check:nth-child(2)
  .form-control::placeholder {
  font-size: 14px;
}

.ca-form .file-drop-area {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 30px;
  background-color: #04a5fb05;
  transition: 0.2s;
  box-shadow: 0px -1px 2.9px 0px #0000000d;
  max-width: 165px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ca-form .file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

.ca-form .card-file {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 165px;
  border: 1px solid #04a5fb;
  border-radius: 8px;
  height: 180px;
}

.ca-form .card-file-text {
  padding: 16px 16px;
  color: #04a5fb;
  font-size: 14px;
  font-weight: 400;
}

/* .ca-form .form-flex.form-radio input.form-check-input {
  border: none;
  padding: inherit;
}

.ca-form .form-flex.form-radio .form-check-label {
  position: inherit;
  padding: 0;
  display: block;
  font-size: 12px;
  font-weight: 400;
  background-color: transparent;
  border: none;
  border-radius: 8px;
  text-align: center;
  color: #0000008c;
  min-width: auto;
  cursor: pointer;
  margin-bottom: 0;
}

.ca-form input.form-check-input:checked[type="radio"] {
  background-image: none !important;
}

.ca-form input[type="radio"]:checked + label.form-check-label,
.ca-form input[type="radio"].checked:checked + label.form-check-label {
  background: #04a5fb0f;
  border: 1px solid #04a5fb;
  color: #04a5fb;
  font-weight: 500;
}

.ca-form input[type="radio"] + label.form-check-label span {
  display: none;
}

.ca-form input[type="radio"]:checked + label.form-check-label span {
  display: inline-block;
} */

.ca-form .accordion-item {
  border: 1px solid #00000038;
  margin-bottom: 15px;
}

.ca-form .accordion-item,
.ca-form .accordion-button {
  border-radius: 10px;
}

.ca-form .accordion-button {
  color: #000000;
  font-weight: 700;
}

.ca-form .accordion-item:first-of-type .accordion-button,
.ca-form .accordion-item:first-of-type {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.ca-form .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.ca-form .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

/* Creatives */
.creatives-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.upload-box,
.image-box {
  width: 180px;
  height: 180px;
  border: 1px solid #04a5fb;
  border-radius: 8px;
  background: #04a5fb05;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: relative;
}

.image-box {
  border: 1px solid #cccccc;
  background: #ffffff;
  align-items: flex-start;
}

.upload-box input[type="file"] {
  display: none;
}

.upload-plus {
  font-size: 36px;
  color: #04a5fb;
  cursor: pointer;
  margin-top: 30px;
}

.label-text,
.image-name {
  font-size: 14px;
  color: #000;
  text-align: center;
}

.image-name {
  width: 75%;
  font-size: 10px;
  text-align: left;
  font-weight: 500;
  padding: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.label-text {
  color: #04a5fb;
  display: block;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  padding: 10px;
}

.image-box img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

/* Dropdown Menu */
.image-box .dropdown {
  position: absolute;
  bottom: 6px;
  right: 10px;
}

.image-box .dropdown-toggle::after {
  display: none;
}

.image-box .dropdown-toggle {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #000;
}

.image-box .dropdown-menu {
  position: absolute;
  top: 26px;
  right: 0;
  font-size: 13px;
  background: linear-gradient(0deg, #06161d, #06161d),
    linear-gradient(90deg, rgba(4, 165, 251, 0) 0%, rgba(0, 62, 220, 0.2) 100%);
  border: unset;
  padding: 6px 0;
  border-radius: 4px;
  z-index: 100;
  display: none;
}

.image-box .dropdown-menu button {
  background: none;
  border: none;
  width: 100%;
  padding: 6px 15px;
  text-align: left;
  font-size: 13px;
  cursor: pointer;
  color: #fff;
}

.image-box .dropdown-menu button:hover {
  background-color: color(srgb 1 1 1/0.1);
}

/* input[type="checkbox"].checked:checked {
  background-color: #58c727;
  border-color: #58c727;
} */

/* .form-field.selected .form-label {
  color: #12121266;
}

.form-field.selected input {
  color: #121212;
} */

.modal form .form-control:focus,
.ca-form .form-control:focus,
.ca-form .form-select:focus {
  border: 1px solid #000000;
  box-shadow: none;
  outline: 0;
}

.modal.modal.drawer .modal-header,
.modal.drawer .modal-dialog .modal-content,
.modal.drawer .modal-footer {
  border-radius: 0;
}

.modal.drawer .modal-dialog .modal-content .modal-body {
  overflow: auto;
}
.modal.drawer.show {
  padding-right: 0 !important;
}
.modal.drawer.show,
.modal.drawer.show * {
  pointer-events: auto;
}
.modal.drawer.show .modal-dialog {
  transform: translate(0, 0);
}
.modal.drawer.right-align {
  flex-direction: row-reverse;
}
.modal.drawer.left-align:not(.show) .modal-dialog {
  transform: translate(-25%, 0);
}

.modal.drawer .modal-footer {
  border-top: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.modal.drawer .modal-dialog {
  max-width: 300px;
}

.ranges li,
tr,
td,
th {
  color: black;
}
.drp-buttons .drp-selected {
  color: #000000 !important;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  color: black;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  font-size: 18px;
}

@media screen and (max-width: 1199px) {
  .navbar-menu .navbar-nav .nav-link {
    padding: 8px 12px;
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .page-head-img {
    margin-top: -100px;
  }

  .dtfh-floatingparent.dtfh-floatingparent-head {
    display: none;
  }
  .login-wc-wrap {
    padding: 30px 30px;
  }
  .heading-login h1 {
    font-size: 30px;
  }
  .heading-login p {
    font-size: 16px;
  }
  .login {
    padding: 70px 30px;
  }
  .ca-form .form-flex.form-radio {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .ca-form .accordion-item:nth-of-type(2) label,
  .ca-form .accordion-item:nth-of-type(2) .form-label,
  .ca-form .accordion-item:last-child label,
  .ca-form .accordion-item:last-child .form-label {
    min-width: auto;
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .login .row {
    border-radius: 30px;
  }
  .login {
    padding: 50px 30px;
  }
  main {
    margin-top: 180px;
  }
  .ca-form .form-group {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .ca-form label,
  .ca-form .form-label {
    min-width: auto;
    margin-bottom: 8px;
  }
  .ca-form .accordion-item:nth-of-type(2) .form-flex.form-radio label,
  .ca-form .accordion-item:nth-of-type(2) .form-flex.form-radio .form-label {
    margin-bottom: 0;
    min-width: fit-content;
  }
  .ca-form .accordion-item:nth-of-type(2) label,
  .ca-form .accordion-item:nth-of-type(2) .form-label,
  .ca-form .accordion-item:last-child label,
  .ca-form .accordion-item:last-child .form-label {
    min-width: fit-content;
  }
  /* .image-box .dropdown {
    bottom: 4px;
  } */
}
@media screen and (max-width: 576px) {
  .modal.drawer .modal-dialog {
    max-width: 90%;
  }
  .login {
    padding: 30px 15px;
  }
  .login-form {
    max-width: 95%;
  }
  .image-source {
    width: 200px;
    height: 200px;
  }
  .ca-form .form-flex.form-radio .form-check {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 420px) {
  .btns_group {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}
