@font-face {
  font-family: "ParalucentBold";
  src: url(../fonts/ParalucentBold.otf);
}
@font-face {
  font-family: "ParalucentLight";
  src: url(../fonts/ParalucentLight.otf);
}
*,
* button:focus {
  outline: 0;
}

:root {
  --main-color: #702875;
  --red: #DD3D79;
  --blue: #3D2E84;
  --green: #2DD975;
  --subColor: #C8C5C7;
  /* --subColor2: #77643d; */
}

.main-color {
  color: var(--main-color) !important;
}

.main-back {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.cr-red {
  color: var(--green) !important;
}

.bg-red {
  background-color: var(--green) !important;
  border-color: var(--green) !important;
}

.cr-blue {
  color: var(--blue) !important;
}

.bg-blue {
  background-color: var(--blue) !important;
  border-color: var(--blue) !important;
}

.cr-green {
  color: var(--green) !important;
}

.bg-green {
  background-color: var(--green) !important;
  border-color: var(--green) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background: #f1f1f1;
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  background-color: #fff;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  color: #000;
  margin: 0;
}

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

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email], [type=number], [type=tel], [type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

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

.section_padding {
  padding: 80px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0666666667), -10px -10px 30px rgba(0, 0, 0, 0.0666666667);
  text-transform: capitalize;
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 13px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- butns --------------- */
.butn-st2 {
  position: relative;
  padding: 15px 40px;
  border-radius: 8px;
  color: #fff;
  text-transform: capitalize;
  background-color: var(--green);
  border: 0;
  text-align: center;
  transition: all 0.3s ease;
}
.butn-st2:hover {
  background-color: #000;
  color: #fff;
}
.butn-st2.butn-md {
  padding: 10px 30px;
  font-size: 13px;
}
.butn-st2.line-butn {
  border: 1px solid #dee2e6;
  background-color: transparent;
  color: #666;
}
.butn-st2.line-butn:hover {
  color: #fff;
  background-color: var(--green);
}
.butn-st2.blue-butn {
  background-color: var(--blue);
  color: #fff;
}
.butn-st2.blue-butn:hover {
  background-color: var(--green);
}

.table {
  position: relative;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
}
.table .dropdown-toggle::after {
  display: none;
}
.table th, .table td {
  padding: 15px;
  vertical-align: middle;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  min-width: -moz-max-content;
  min-width: max-content;
  white-space: nowrap;
}
.table thead th {
  background-color: #F5F7FA;
  font-weight: 500;
}
.table thead th:first-of-type {
  border-inline-start: 1px solid #dee2e6;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.table thead th:last-of-type {
  border-inline-end: 1px solid #dee2e6;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.table tr td:first-of-type {
  border-inline-start: 1px solid #dee2e6;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.table tr td:last-of-type {
  border-inline-end: 1px solid #dee2e6;
  text-align: end;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.table .search-tr td {
  padding: 0 6px;
  border: 0;
}
.table .search-tr td:first-of-type {
  border-inline-start: 0;
  padding-inline-start: 0;
}
.table .search-tr td:last-of-type {
  border-inline-end: 0;
  padding-inline-end: 0;
}
.table .search-btn {
  width: 100%;
  height: 40px;
  border-radius: 6px;
  background-color: var(--blue);
  color: #fff;
  border: 0;
  transition: all 0.3s ease;
}
.table .search-btn:hover {
  background-color: var(--green);
}
.table .form-control {
  padding: 10px 15px;
  font-size: 13px;
  min-height: 40px;
}
.table .form-check {
  margin-bottom: 0;
}
.table .form-check .form-check-input {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  margin-inline-end: 10px;
}
.table .tag {
  position: relative;
  font-size: 11px;
  padding: 5px 15px;
  border: 2px solid #dee2e6;
  background-color: rgba(153, 153, 153, 0.1333333333);
  border-radius: 10px;
}
.table .tag .fa-circle {
  font-size: 4px;
  margin-inline-end: 3px;
  position: relative;
  top: -2px;
}
.table .tag.tag-green {
  color: #4FBE88;
  border-color: #4FBE88;
  background-color: rgba(79, 190, 136, 0.0823529412);
}
.table .tag.tag-red {
  color: #AF0101;
  border-color: #AF0101;
  background-color: rgba(175, 1, 1, 0.0823529412);
}

.form-check-input:checked {
  background-color: #3D2E84;
  border-color: #3D2E84;
  position: relative;
  top: -1px;
}

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

/* --------------- body --------------- */
.scrollsmoother-container {
  position: relative;
  z-index: 20;
}
.scrollsmoother-container .video-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.scrollsmoother-container .icon-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}
.scrollsmoother-container .icon-container .icon-logo {
  position: relative;
  top: 50px;
  left: calc(50% - 20vh);
  width: 40vh;
  height: 40vh;
}

section {
  position: relative;
  z-index: 20;
}

.section-title {
  position: relative;
  font-size: 95px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -3px;
}

/* --------------- navbar-st2 --------------- */
.navbar-st2 {
  position: relative;
  background-color: #fff;
  z-index: 99 !important;
  padding: 20px 0;
}
.navbar-st2 .navbar-brand {
  height: 60px;
}
.navbar-st2 .navbar-nav .nav-item .nav-link {
  color: #000;
  margin: 0 20px;
}

/* --------------- login page --------------- */
.login-pg {
  position: relative;
  background-color: #f9f9f9;
}
.login-pg.pat-bg {
  background-image: url(../images/login-pat2.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.login-pg .logo-side {
  position: relative;
  min-height: 100vh;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/login-pat.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.login-pg .logo-side .logo {
  position: relative;
  height: 240px;
}
.login-pg .logo3 {
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 50px;
}
.login-pg .logo3 .logo {
  height: 80px;
}
.login-pg .form-side {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}
.login-pg .form-side .title-wrapper {
  position: relative;
  margin-bottom: 50px;
}
.login-pg .form-side .title-wrapper h3 {
  font-size: 32px;
  margin-bottom: 10px;
}
.login-pg .form-side .title-wrapper .text {
  font-size: 16px;
}
.login-pg .form-side .form {
  display: block;
  text-align: center;
}
.login-pg .form-side .form .form-group {
  position: relative;
  text-align: start;
  margin-bottom: 20px;
}

.code-group {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  direction: ltr;
}
.code-group .item {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 0;
  background-color: #f0eaea;
  text-align: center;
  font-size: 20px;
}
.code-group .item.focused {
  background-color: #fff;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1333333333);
}

.input-group .form-select {
  max-width: -moz-max-content;
  max-width: max-content;
}

.form-group label {
  text-transform: capitalize;
}

.form-control.md-form {
    min-height: 40px;
}

.form-control {
  position: relative;
  min-height: 50px;
  font-size: 14px;
  box-shadow: none !important;
}
.form-control:focus {
  border-color: #000;
}
.form-control::-moz-placeholder {
  opacity: 0.4;
}
.form-control::placeholder {
  opacity: 0.4;
}
.form-control.input-sm {
  min-height: 40px;
  font-size: 13px;
}

.show_hide_password {
  position: relative;
}
.show_hide_password .show_pass {
  opacity: 0.5;
  font-size: 14px;
  position: absolute;
  right: 15px;
  bottom: 18px;
  cursor: pointer;
  z-index: 10;
}

.form-check-input {
  width: 16px;
  height: 16px;
}

.dropdown-select .dropdown-menu {
  width: 100%;
  padding: 15px;
  border: 1px solid #dee2e6;
  box-shadow: none;
}
.dropdown-select .form-check-label {
  font-size: 14px;
}
.dropdown-select .cat-selected .cat-txt {
  position: relative;
  padding: 5px 15px;
  background-color: #f5f5f5;
  border-radius: 20px;
  font-size: 12px;
}
.dropdown-select .don-btn {
  position: relative;
  margin-top: 20px;
  background-color: var(--blue);
  padding: 5px 25px;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}

.form-control.dropdown-toggle {
  text-align: start;
}
.form-control.dropdown-toggle::after {
  display: none;
}

.icon-group {
  position: relative;
}
.icon-group input {
  padding-inline-start: 30px;
}
.icon-group .float-icon {
  position: absolute;
  left: 0.75rem;
  bottom: 15px;
}

/* --------------- ui datepicker --------------- */
.ui-widget.ui-widget-content {
  min-width: 350px;
  border-color: #eee;
}
.ui-widget.ui-widget-content select {
  position: relative;
  min-height: 35px;
  font-size: 12px;
  box-shadow: none !important;
  border-radius: 8px;
  border-color: #dee2e6;
  padding: 0 10px;
  margin: 0 5px;
}

.ui-state-default {
  background: transparent;
  border: 0;
  padding: 15px;
  text-align: center !important;
  color: #888 !important;
}

.ui-widget-content .ui-state-default {
  background: transparent;
  padding: 10px 15px;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  border-radius: 5px;
}

.ui-widget-header {
  background: #fafafa;
  border: 0;
  padding: 5px !important;
}

.ui-datepicker .ui-datepicker-prev {
  top: 10px;
  text-align: center;
}
.ui-datepicker .ui-datepicker-prev:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #555;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 16px;
  content: "\f053";
}
.ui-datepicker .ui-datepicker-prev:hover:after {
  color: #fff;
}
.ui-datepicker .ui-datepicker-next {
  top: 10px;
  text-align: center;
}
.ui-datepicker .ui-datepicker-next:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #555;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 16px;
  content: "\f054";
}
.ui-datepicker .ui-datepicker-next:hover:after {
  color: #fff;
}
.ui-datepicker th {
  padding: 12px;
}

.ui-state-highlight {
  border-color: #3D2E84 !important;
  background-color: rgba(61, 46, 132, 0.1333333333) !important;
}

.ui-state-active {
  border-color: #3D2E84 !important;
  background-color: #3D2E84 !important;
  color: #fff !important;
}

/* --------------- sky-dashboard --------------- */
.sky-dashboard .dashboard {
  position: relative;
  display: flex;
  color: #666D80;
}
.sky-dashboard .dashboard .sidemenu {
  position: relative;
  width: 270px;
  flex-shrink: 0;
  padding: 15px;
  border-inline-end: 1px solid #dee2e6;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.sky-dashboard .dashboard .sidemenu .logo-wrapper {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sky-dashboard .dashboard .sidemenu .logo-wrapper .logo {
  height: 40px;
}
.sky-dashboard .dashboard .sidemenu .search-wrapper {
  padding-top: 20px;
}
.sky-dashboard .dashboard .sidemenu .search-wrapper .form-group {
  position: relative;
}
.sky-dashboard .dashboard .sidemenu .search-wrapper .form-group .form-control {
  min-height: 40px;
}
.sky-dashboard .dashboard .sidemenu .search-wrapper .form-group .search-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background-color: transparent;
}
.sky-dashboard .dashboard .sidemenu .sidemenu-links {
  position: relative;
}
.sky-dashboard .dashboard .sidemenu .sidemenu-links .links .lnk {
  position: relative;
  display: flex;
  padding: 8px;
  font-size: 16px;
  border-radius: 8px;
  margin: 2px 0;
  text-transform: capitalize;
}
.sky-dashboard .dashboard .sidemenu .sidemenu-links .links .lnk .icon {
  margin-inline-end: 10px;
  flex-shrink: 0;
}
.sky-dashboard .dashboard .sidemenu .sidemenu-links .links .lnk:hover, .sky-dashboard .dashboard .sidemenu .sidemenu-links .links .lnk.active {
  color: #000;
  background-color: #F8F9FB;
}
.sky-dashboard .dashboard .sidemenu .sidemenu-links .links .lnk:hover .icon, .sky-dashboard .dashboard .sidemenu .sidemenu-links .links .lnk.active .icon {
  color: #3D2E84;
}
.sky-dashboard .dashboard .sidemenu .user-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #dee2e6;
}
.sky-dashboard .dashboard .sidemenu .user-wrapper .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #dee2e6;
  margin-inline-end: 10px;
  flex-shrink: 0;
}
.sky-dashboard .dashboard .sidemenu .user-wrapper .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sky-dashboard .dashboard .sidemenu .user-wrapper h6 {
  font-size: 15px;
}
.sky-dashboard .dashboard .sidemenu .user-wrapper small {
  font-size: 11px;
}
.sky-dashboard .dashboard .sidemenu .btm-cont {
  margin-top: 100px;
}
.sky-dashboard .dashboard .dashboard-body {
  position: relative;
  padding: 0 30px;
  flex-grow: 1;
}
.sky-dashboard .dashboard .dashboard-body .title-wrapper {
  position: relative;
  padding: 23px 0;
  border-bottom: 1px solid #dee2e6;
}
.sky-dashboard .dashboard .dashboard-body .title-wrapper .pg-title {
  font-size: 20px;
  font-weight: 500;
}
.sky-dashboard .dashboard .dashboard-body .title-wrapper .users {
  height: 30px;
}
.sky-dashboard .dashboard .dashboard-body .title-wrapper .avatars-imgs {
  position: relative;
  margin-inline-end: 15px;
}
.sky-dashboard .dashboard .dashboard-body .title-wrapper .avatars-imgs .user-img {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 -7px;
}
.sky-dashboard .dashboard .dashboard-body .title-wrapper .avatars-imgs .user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sky-dashboard .dashboard .dashboard-body .title-wrapper .avatars-imgs .user-img:hover {
  z-index: 5;
}
.sky-dashboard .statics-sec {
  position: relative;
  padding-top: 20px;
}
.sky-dashboard .statics-sec .statics .item {
  position: relative;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #dee2e6;
  border-radius: 10px;
}
.sky-dashboard .statics-sec .statics .item .icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(50, 108, 219, 0.0823529412);
  margin-bottom: 15px;
}
.sky-dashboard .statics-sec .statics .item .icon img {
  width: 18px;
  height: 18px;
}
.sky-dashboard .statics-sec .statics .item h5 {
  font-size: 24px;
  margin: 10px 0 20px;
}
.sky-dashboard .statics-sec .statics .item .btm-txt {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 12px;
}
.sky-dashboard .statics-sec .statics .item .btm-txt .alert {
  position: relative;
  font-size: 12px;
  border: 0;
  border-radius: 6px;
  margin-inline-end: 5px;
  padding: 5px 5px;
  margin-bottom: 0;
}
.sky-dashboard .statics-sec .statics .item .btm-txt .alert.alert-success {
  color: #4FBE88;
  background-color: rgba(79, 190, 136, 0.1333333333);
}
.sky-dashboard .statics-sec .statics .item .btm-txt .alert.alert-danger {
  color: #F04A4A;
  background-color: rgba(240, 74, 74, 0.1333333333);
}
.sky-dashboard .preformance-table {
  position: relative;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #dee2e6;
  border-radius: 10px;
}
.sky-dashboard .preformance-table .users .item {
  position: relative;
  margin-top: 19px;
}
.sky-dashboard .preformance-table .users .item .user-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.sky-dashboard .preformance-table .users .item .user-wrapper .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #dee2e6;
  margin-inline-end: 10px;
  flex-shrink: 0;
}
.sky-dashboard .preformance-table .users .item .user-wrapper .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sky-dashboard .preformance-table .users .item .user-wrapper h6 {
  font-size: 15px;
}
.sky-dashboard .preformance-table .users .item .user-wrapper small {
  font-size: 11px;
}
.sky-dashboard .avatars-imgs {
  position: relative;
  margin-inline-end: 15px;
}
.sky-dashboard .avatars-imgs .user-img {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 -7px;
}
.sky-dashboard .avatars-imgs .user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sky-dashboard .avatars-imgs .user-img:hover {
  z-index: 5;
}
.sky-dashboard .tasks {
  position: relative;
}
.sky-dashboard .tasks .tasks-box {
  position: relative;
  margin-top: 30px;
}
.sky-dashboard .tasks .tasks-box .task-head {
  position: relative;
  background-color: #F8F9FB;
  font-size: 14px;
  padding: 10px 20px 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sky-dashboard .tasks .tasks-box .task-head .form-check-input {
  margin-inline-end: 8px;
}
.sky-dashboard .tasks .tasks-box .task-head .num {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 5px;
  font-size: 11px;
}
.sky-dashboard .tasks .tasks-box .task-head .l-side {
  flex-grow: 1;
}
.sky-dashboard .tasks .tasks-box .task-body .item {
  position: relative;
  font-size: 14px;
  padding: 12px 20px 10px;
  border-radius: 10px;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  margin-top: 10px;
}
.sky-dashboard .tasks .tasks-box .task-body .item .form-check {
  display: flex;
}
.sky-dashboard .tasks .tasks-box .task-body .item .form-check .form-check-input {
  position: relative;
  margin-inline-end: 8px;
  top: -1px;
}
.sky-dashboard .tasks .tasks-box .task-body .item .form-check .form-check-label {
  font-weight: 600;
  color: #222;
}
.sky-dashboard .tasks .tasks-box .task-body .item .tag {
  position: relative;
  margin-inline-start: 5px;
  padding: 4px 10px;
  border-radius: 5px;
  background-color: rgba(153, 153, 153, 0.1333333333);
  font-size: 12px;
}
.sky-dashboard .tasks .tasks-box .task-body .item .tag.cr-blue1 {
  color: #4E57EF;
  background-color: rgba(78, 87, 239, 0.0823529412);
}
.sky-dashboard .tasks .tasks-box .task-body .item .tag.cr-cyan1 {
  color: #33CFFF;
  background-color: rgba(51, 207, 255, 0.0823529412);
}
.sky-dashboard .tasks .tasks-box .task-body .item .tag.cr-purple1 {
  color: #936DFF;
  background-color: rgba(147, 109, 255, 0.0823529412);
}
.sky-dashboard .tasks .tasks-box .task-body .item .tag.cr-red1 {
  color: #DF1C41;
  background-color: rgba(223, 28, 65, 0.0823529412);
}
.sky-dashboard .tasks .tasks-box .task-body .item .users {
  height: 30px;
  margin-inline-end: 15px;
}
.sky-dashboard .tasks .tasks-box .task-body .item .avatars-imgs {
  position: relative;
  margin-inline-end: 15px;
}
.sky-dashboard .tasks .tasks-box .task-body .item .avatars-imgs .user-img {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 -7px;
}
.sky-dashboard .tasks .tasks-box .task-body .item .avatars-imgs .user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sky-dashboard .tasks .tasks-box .task-body .item .avatars-imgs .user-img:hover {
  z-index: 5;
}
.sky-dashboard .tasks.Kanban-view .horizontal-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: calc(100vw - 300px);
}
.dashboard-body {
    overflow-x: auto;
    width: calc(100vw - 300px);
}
.sky-dashboard .tasks.Kanban-view .task-head .form-check-label {
  font-size: 12px;
  font-weight: bold;
}
.sky-dashboard .tasks.Kanban-view .task-body .item {
  padding: 15px;
}
.sky-dashboard .tasks.Kanban-view .task-body .item .card-dots {
  position: absolute;
  top: 20px;
  right: 20px;
}
.sky-dashboard .tasks.Kanban-view .task-body .item .form-check-input {
  display: none;
}
.sky-dashboard .tasks.Kanban-view .task-body .item .form-check {
  margin-bottom: 15px !important;
  padding-inline-end: 30px !important;
  padding-inline-start: 0 !important;
}
.sky-dashboard .tasks.Kanban-view .task-body .item .tags {
  margin-bottom: 15px;
}
.sky-dashboard .tasks.Kanban-view .task-body .item .tags .tag {
  margin-inline-start: 0;
  margin-inline-end: 5px;
}
.sky-dashboard .tasks.Kanban-view .task-body .item .btm-inf {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 15px;
  border-top: 1px solid #dee2e6;
}
.sky-dashboard .tasks.Kanban-view .task-body .item .avatars-imgs {
  position: relative;
  margin-inline-end: 15px;
}
.sky-dashboard .tasks.Kanban-view .task-body .item .avatars-imgs .user-img {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 -7px;
}
.sky-dashboard .tasks.Kanban-view .task-body .item .avatars-imgs .user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sky-dashboard .tasks.Kanban-view .task-body .item .avatars-imgs .user-img:hover {
  z-index: 5;
}
.sky-dashboard .tasks.table-view {
  position: relative;
  padding-top: 30px;
}
.sky-dashboard .tasks.table-view .table {
  border: 0;
}
.sky-dashboard .tasks.table-view .table .form-check .form-check-input {
  border-radius: 4px;
}
.sky-dashboard .tasks.table-view .table .tag {
  border: 0;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
}
.sky-dashboard .tasks.table-view .table .tag.cr-blue1 {
  color: #4E57EF;
  background-color: rgba(78, 87, 239, 0.0823529412);
}
.sky-dashboard .tasks.table-view .table .tag.cr-cyan1 {
  color: #33CFFF;
  background-color: rgba(51, 207, 255, 0.0823529412);
}
.sky-dashboard .tasks.table-view .table .tag.cr-purple1 {
  color: #936DFF;
  background-color: rgba(147, 109, 255, 0.0823529412);
}
.sky-dashboard .tasks.table-view .table .tag.cr-red1 {
  color: #DF1C41;
  background-color: rgba(223, 28, 65, 0.0823529412);
}
.sky-dashboard .tasks.table-view .table .tag.cr-green1 {
  color: #4FBE88;
  background-color: rgba(79, 190, 136, 0.0823529412);
}
.sky-dashboard .tasks.table-view .table .avatars-imgs .user-img {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 -7px;
}
.sky-dashboard .tasks.table-view .table .avatars-imgs .user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sky-dashboard .tasks.table-view .table .avatars-imgs .user-img:hover {
  z-index: 5;
}
.sky-dashboard .companies {
  position: relative;
}
.sky-dashboard .companies .companies-empty {
  position: relative;
  padding: 150px 0;
}
.sky-dashboard .companies .companies-empty .icon {
  width: 150px;
  margin: 0 auto 30px;
}
.sky-dashboard .companies .companies-box {
  position: relative;
  margin-top: 24px;
}
.sky-dashboard .companies .companies-box .companies-head {
  position: relative;
  background-color: #F8F9FB;
  border: 1px solid #DFE1E6;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 12px;
}
.sky-dashboard .companies .companies-box .companies-head .text-item i {
  margin-inline-end: 5px;
}
.sky-dashboard .companies .companies-box .companies-body .company-row {
  position: relative;
  padding: 12px 15px;
  border: 1px solid #DFE1E6;
  border-radius: 12px;
  margin-top: 15px;
}
.sky-dashboard .companies .companies-box .companies-body .company-row .main-inf {
  position: relative;
  display: flex;
  align-items: center;
}
.sky-dashboard .companies .companies-box .companies-body .company-row .main-inf .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  margin-inline-end: 10px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sky-dashboard .companies .companies-box .companies-body .company-row .main-inf h6 {
  font-size: 14px;
  font-weight: bold;
}
.sky-dashboard .companies .companies-box .companies-body .company-row .float-dropdown {
  position: absolute;
  right: 15px;
  top: 15px;
}
.sky-dashboard .companies .tag {
  border: 0;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
}
.sky-dashboard .companies .tag .fa-circle {
  font-size: 4px;
  margin-inline-end: 3px;
  position: relative;
  top: -2px;
}
.sky-dashboard .companies .tag.cr-blue1 {
  color: #4E57EF;
  background-color: rgba(78, 87, 239, 0.0823529412);
}
.sky-dashboard .companies .tag.cr-cyan1 {
  color: #33CFFF;
  background-color: rgba(51, 207, 255, 0.0823529412);
}
.sky-dashboard .companies .tag.cr-purple1 {
  color: #936DFF;
  background-color: rgba(147, 109, 255, 0.0823529412);
}
.sky-dashboard .companies .tag.cr-red1 {
  color: #DF1C41;
  background-color: rgba(223, 28, 65, 0.0823529412);
}
.sky-dashboard .companies .tag.cr-green1 {
  color: #4FBE88;
  background-color: rgba(79, 190, 136, 0.0823529412);
}
.sky-dashboard .companies .company-head {
  position: relative;
  background-color: #F8F9FB;
  font-size: 14px;
  padding: 10px 20px 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sky-dashboard .companies .company-head .form-check-input {
  margin-inline-end: 8px;
}
.sky-dashboard .companies .company-head .num {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 5px;
  font-size: 11px;
}
.sky-dashboard .companies .company-head .l-side {
  flex-grow: 1;
}
.sky-dashboard .companies.Kanban-view .companies-box .company-row .main-inf .icon {
  width: 45px;
  height: 45px;
  overflow: hidden;
}
.sky-dashboard .companies.Kanban-view .btm-inf {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 15px;
  border-top: 1px solid #dee2e6;
}
.sky-dashboard .companies.grid-view .companies-box .company-row .main-inf {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 10px;
}
.sky-dashboard .companies.grid-view .companies-box .company-row .main-inf .icon {
  width: 45px;
  height: 45px;
}
.sky-dashboard .companies.grid-view .companies-box .company-row .float-dropdown {
  top: 22px;
}
.sky-dashboard .companies.grid-view .btm-inf {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 15px;
  border-top: 1px solid #dee2e6;
}
.sky-dashboard .companies.table-view {
  position: relative;
  padding-top: 30px;
}
.sky-dashboard .companies.table-view .table {
  border: 0;
}
.sky-dashboard .companies.table-view .table .form-check .form-check-input {
  border-radius: 4px;
}
.sky-dashboard .companies.table-view .table .tag {
  border: 0;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
}
.sky-dashboard .companies.table-view .table .tag.cr-blue1 {
  color: #4E57EF;
  background-color: rgba(78, 87, 239, 0.0823529412);
}
.sky-dashboard .companies.table-view .table .tag.cr-cyan1 {
  color: #33CFFF;
  background-color: rgba(51, 207, 255, 0.0823529412);
}
.sky-dashboard .companies.table-view .table .tag.cr-purple1 {
  color: #936DFF;
  background-color: rgba(147, 109, 255, 0.0823529412);
}
.sky-dashboard .companies.table-view .table .tag.cr-red1 {
  color: #DF1C41;
  background-color: rgba(223, 28, 65, 0.0823529412);
}
.sky-dashboard .companies.table-view .table .tag.cr-green1 {
  color: #4FBE88;
  background-color: rgba(79, 190, 136, 0.0823529412);
}
.sky-dashboard .companies.table-view .table .avatars-imgs .user-img {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 -7px;
}
.sky-dashboard .companies.table-view .table .avatars-imgs .user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sky-dashboard .companies.table-view .table .avatars-imgs .user-img:hover {
  z-index: 5;
}
.sky-dashboard .contacts {
  position: relative;
}
.sky-dashboard .contacts .contacts-empty {
  position: relative;
  padding: 150px 0;
}
.sky-dashboard .contacts .contacts-empty .icon {
  width: 150px;
  margin: 0 auto 30px;
}
.sky-dashboard .contacts .contacts-box {
  position: relative;
  margin-top: 24px;
}
.sky-dashboard .contacts .contacts-box .contacts-head {
  position: relative;
  background-color: #F8F9FB;
  border: 1px solid #DFE1E6;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 12px;
}
.sky-dashboard .contacts .contacts-box .contacts-head .text-item i {
  margin-inline-end: 5px;
}
.sky-dashboard .contacts .contacts-box .contacts-body .contact-row {
  position: relative;
  padding: 12px 18px;
  border: 1px solid #DFE1E6;
  border-radius: 12px;
  margin-top: 15px;
}
.sky-dashboard .contacts .contacts-box .contacts-body .contact-row .form-check.d-flex .form-check-input {
  position: relative;
  top: -1px;
}
.sky-dashboard .contacts .contacts-box .contacts-body .contact-row .main-inf {
  position: relative;
  display: flex;
  align-items: center;
}
.sky-dashboard .contacts .contacts-box .contacts-body .contact-row .main-inf .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  margin-inline-end: 10px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sky-dashboard .contacts .contacts-box .contacts-body .contact-row .main-inf h6 {
  font-size: 14px;
  font-weight: bold;
}
.sky-dashboard .contacts .contacts-box .contacts-body .contact-row .float-dropdown {
  position: absolute;
  right: 18px;
  top: 18px;
}
.sky-dashboard .contacts .tag {
  border: 0;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
}
.sky-dashboard .contacts .tag .fa-circle {
  font-size: 4px;
  margin-inline-end: 3px;
  position: relative;
  top: -2px;
}
.sky-dashboard .contacts .tag.cr-blue1 {
  color: #4E57EF;
  background-color: rgba(78, 87, 239, 0.0823529412);
}
.sky-dashboard .contacts .tag.cr-cyan1 {
  color: #33CFFF;
  background-color: rgba(51, 207, 255, 0.0823529412);
}
.sky-dashboard .contacts .tag.cr-purple1 {
  color: #936DFF;
  background-color: rgba(147, 109, 255, 0.0823529412);
}
.sky-dashboard .contacts .tag.cr-red1 {
  color: #DF1C41;
  background-color: rgba(223, 28, 65, 0.0823529412);
}
.sky-dashboard .contacts .tag.cr-green1 {
  color: #4FBE88;
  background-color: rgba(79, 190, 136, 0.0823529412);
}
.sky-dashboard .contacts .contact-head {
  position: relative;
  background-color: #F8F9FB;
  font-size: 14px;
  padding: 10px 20px 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sky-dashboard .contacts .contact-head .form-check-input {
  margin-inline-end: 8px;
}
.sky-dashboard .contacts .contact-head .num {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 5px;
  font-size: 11px;
}
.sky-dashboard .contacts .contact-head .l-side {
  flex-grow: 1;
}
.sky-dashboard .contacts.Kanban-view .contacts-box .contact-row .main-inf .icon {
  width: 45px;
  height: 45px;
}
.sky-dashboard .contacts.Kanban-view .main-inf {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}
.sky-dashboard .contacts.Kanban-view .btm-inf {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 15px;
  border-top: 1px solid #dee2e6;
}
.sky-dashboard .contacts.Kanban-view .btm-inf a {
  position: relative;
  font-weight: 600;
  padding: 10px 40px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  color: #000;
}
.sky-dashboard .contacts.Kanban-view .btm-inf a i {
  margin-inline-end: 8px;
}
.sky-dashboard .contacts.Kanban-view .btm-inf a:hover {
  background-color: var(--blue);
  color: #fff;
}
.sky-dashboard .contacts.grid-view .contacts-box .contact-row .main-inf {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 10px;
}
.sky-dashboard .contacts.grid-view .contacts-box .contact-row .main-inf .icon {
  width: 45px;
  height: 45px;
}
.sky-dashboard .contacts.grid-view .contacts-box .contact-row .float-dropdown {
  top: 22px;
}
.sky-dashboard .contacts.grid-view .btm-inf {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 15px;
  border-top: 1px solid #dee2e6;
}
.sky-dashboard .contacts.table-view {
  position: relative;
  padding-top: 30px;
}
.sky-dashboard .contacts.table-view .table {
  border: 0;
}
.sky-dashboard .contacts.table-view .table .form-check .form-check-input {
  border-radius: 4px;
}
.sky-dashboard .contacts.table-view .table .tag {
  border: 0;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
}
.sky-dashboard .contacts.table-view .table .tag.cr-blue1 {
  color: #4E57EF;
  background-color: rgba(78, 87, 239, 0.0823529412);
}
.sky-dashboard .contacts.table-view .table .tag.cr-cyan1 {
  color: #33CFFF;
  background-color: rgba(51, 207, 255, 0.0823529412);
}
.sky-dashboard .contacts.table-view .table .tag.cr-purple1 {
  color: #936DFF;
  background-color: rgba(147, 109, 255, 0.0823529412);
}
.sky-dashboard .contacts.table-view .table .tag.cr-red1 {
  color: #DF1C41;
  background-color: rgba(223, 28, 65, 0.0823529412);
}
.sky-dashboard .contacts.table-view .table .tag.cr-green1 {
  color: #4FBE88;
  background-color: rgba(79, 190, 136, 0.0823529412);
}
.sky-dashboard .contacts.table-view .table .avatars-imgs .user-img {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 -7px;
}
.sky-dashboard .contacts.table-view .table .avatars-imgs .user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sky-dashboard .contacts.table-view .table .avatars-imgs .user-img:hover {
  z-index: 5;
}
.sky-dashboard .sectors {
  position: relative;
}
.sky-dashboard .sectors .sectors-empty {
  position: relative;
  padding: 150px 0;
}
.sky-dashboard .sectors .sectors-empty .icon {
  width: 150px;
  margin: 0 auto 30px;
}
.sky-dashboard .sectors .sectors-box {
  position: relative;
  margin-top: 24px;
}
.sky-dashboard .sectors .sectors-box .sectors-head {
  position: relative;
  background-color: #F8F9FB;
  border: 1px solid #DFE1E6;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 12px;
}
.sky-dashboard .sectors .sectors-box .sectors-head .text-item i {
  margin-inline-end: 5px;
}
.sky-dashboard .sectors .sectors-box .sectors-body .sector-row {
  position: relative;
  padding: 12px 18px;
  border: 1px solid #DFE1E6;
  border-radius: 12px;
  margin-top: 15px;
}
.sky-dashboard .sectors .sectors-box .sectors-body .sector-row .form-check.d-flex .form-check-input {
  position: relative;
  top: -1px;
}
.sky-dashboard .sectors .sectors-box .sectors-body .sector-row .main-inf {
  position: relative;
  display: flex;
  align-items: center;
}
.sky-dashboard .sectors .sectors-box .sectors-body .sector-row .main-inf .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  margin-inline-end: 10px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sky-dashboard .sectors .sectors-box .sectors-body .sector-row .main-inf h6 {
  font-size: 14px;
  font-weight: bold;
}
.sky-dashboard .sectors .sectors-box .sectors-body .sector-row .float-dropdown {
  position: absolute;
  right: 18px;
  top: 15px;
}
.sky-dashboard .sectors .tag {
  border: 0;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
}
.sky-dashboard .sectors .tag .fa-circle {
  font-size: 4px;
  margin-inline-end: 3px;
  position: relative;
  top: -2px;
}
.sky-dashboard .sectors .tag.cr-blue1 {
  color: #4E57EF;
  background-color: rgba(78, 87, 239, 0.0823529412);
}
.sky-dashboard .sectors .tag.cr-cyan1 {
  color: #33CFFF;
  background-color: rgba(51, 207, 255, 0.0823529412);
}
.sky-dashboard .sectors .tag.cr-purple1 {
  color: #936DFF;
  background-color: rgba(147, 109, 255, 0.0823529412);
}
.sky-dashboard .sectors .tag.cr-red1 {
  color: #DF1C41;
  background-color: rgba(223, 28, 65, 0.0823529412);
}
.sky-dashboard .sectors .tag.cr-green1 {
  color: #4FBE88;
  background-color: rgba(79, 190, 136, 0.0823529412);
}
.sky-dashboard .sectors .sector-head {
  position: relative;
  background-color: #F8F9FB;
  font-size: 14px;
  padding: 10px 20px 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sky-dashboard .sectors .sector-head .form-check-input {
  margin-inline-end: 8px;
}
.sky-dashboard .sectors .sector-head .num {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 5px;
  font-size: 11px;
}
.sky-dashboard .sectors .sector-head .l-side {
  flex-grow: 1;
}
.sky-dashboard .sectors.Kanban-view .sectors-box .contact-row .main-inf .icon {
  width: 45px;
  height: 45px;
}
.sky-dashboard .sectors.Kanban-view .main-inf {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}
.sky-dashboard .sectors.Kanban-view .btm-inf {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 15px;
  border-top: 1px solid #dee2e6;
}
.sky-dashboard .sectors.Kanban-view .btm-inf a {
  position: relative;
  font-weight: 600;
  padding: 10px 40px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  color: #000;
}
.sky-dashboard .sectors.Kanban-view .btm-inf a i {
  margin-inline-end: 8px;
}
.sky-dashboard .sectors.Kanban-view .btm-inf a:hover {
  background-color: var(--blue);
  color: #fff;
}
.sky-dashboard .sectors.grid-view .sectors-box .sector-row .main-inf {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 10px;
}
.sky-dashboard .sectors.grid-view .sectors-box .sector-row .main-inf .icon {
  width: 45px;
  height: 45px;
}
.sky-dashboard .sectors.grid-view .sectors-box .sector-row .float-dropdown {
  top: 22px;
}
.sky-dashboard .sectors.grid-view .btm-inf {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 15px;
  border-top: 1px solid #dee2e6;
}
.sky-dashboard .sectors.table-view {
  position: relative;
  padding-top: 30px;
}
.sky-dashboard .sectors.table-view .table {
  border: 0;
}
.sky-dashboard .sectors.table-view .table .form-check .form-check-input {
  border-radius: 4px;
}
.sky-dashboard .sectors.table-view .table .tag {
  border: 0;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
}
.sky-dashboard .sectors.table-view .table .tag.cr-blue1 {
  color: #4E57EF;
  background-color: rgba(78, 87, 239, 0.0823529412);
}
.sky-dashboard .sectors.table-view .table .tag.cr-cyan1 {
  color: #33CFFF;
  background-color: rgba(51, 207, 255, 0.0823529412);
}
.sky-dashboard .sectors.table-view .table .tag.cr-purple1 {
  color: #936DFF;
  background-color: rgba(147, 109, 255, 0.0823529412);
}
.sky-dashboard .sectors.table-view .table .tag.cr-red1 {
  color: #DF1C41;
  background-color: rgba(223, 28, 65, 0.0823529412);
}
.sky-dashboard .sectors.table-view .table .tag.cr-green1 {
  color: #4FBE88;
  background-color: rgba(79, 190, 136, 0.0823529412);
}
.sky-dashboard .sectors.table-view .table .avatars-imgs .user-img {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 -7px;
}
.sky-dashboard .sectors.table-view .table .avatars-imgs .user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sky-dashboard .sectors.table-view .table .avatars-imgs .user-img:hover {
  z-index: 5;
}
.sky-dashboard .deals {
  position: relative;
}
.sky-dashboard .deals .deals-box {
  position: relative;
  margin-top: 30px;
}
.sky-dashboard .deals .deals-box .deal-head {
  position: relative;
  background-color: #F8F9FB;
  font-size: 14px;
  padding: 10px 20px 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sky-dashboard .deals .deals-box .deal-head .form-check-input {
  margin-inline-end: 8px;
}
.sky-dashboard .deals .deals-box .deal-head .num {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 5px;
  font-size: 11px;
}
.sky-dashboard .deals .deals-box .deal-head .l-side {
  flex-grow: 1;
}
.sky-dashboard .deals .deals-box .deal-body .item {
  position: relative;
  font-size: 14px;
  padding: 12px 20px 10px;
  border-radius: 10px;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  margin-top: 10px;
}
.sky-dashboard .deals .deals-box .deal-body .item .form-check {
  display: flex;
}
.sky-dashboard .deals .deals-box .deal-body .item .form-check .form-check-input {
  position: relative;
  margin-inline-end: 8px;
  top: -1px;
}
.sky-dashboard .deals .deals-box .deal-body .item .form-check .form-check-label {
  font-weight: 600;
  color: #222;
}
.sky-dashboard .deals .deals-box .deal-body .item .tag {
  position: relative;
  margin-inline-start: 5px;
  padding: 4px 10px;
  border-radius: 5px;
  background-color: rgba(153, 153, 153, 0.1333333333);
  font-size: 12px;
}
.sky-dashboard .deals .deals-box .deal-body .item .tag.cr-blue1 {
  color: #4E57EF;
  background-color: rgba(78, 87, 239, 0.0823529412);
}
.sky-dashboard .deals .deals-box .deal-body .item .tag.cr-cyan1 {
  color: #33CFFF;
  background-color: rgba(51, 207, 255, 0.0823529412);
}
.sky-dashboard .deals .deals-box .deal-body .item .tag.cr-purple1 {
  color: #936DFF;
  background-color: rgba(147, 109, 255, 0.0823529412);
}
.sky-dashboard .deals .deals-box .deal-body .item .tag.cr-red1 {
  color: #DF1C41;
  background-color: rgba(223, 28, 65, 0.0823529412);
}
.sky-dashboard .deals .deals-box .deal-body .item .users {
  height: 30px;
  margin-inline-end: 15px;
}
.sky-dashboard .deals .deals-box .deal-body .item .avatars-imgs {
  position: relative;
  margin-inline-end: 15px;
}
.sky-dashboard .deals .deals-box .deal-body .item .avatars-imgs .user-img {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 -7px;
}
.sky-dashboard .deals .deals-box .deal-body .item .avatars-imgs .user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sky-dashboard .deals .deals-box .deal-body .item .avatars-imgs .user-img:hover {
  z-index: 5;
}
.sky-dashboard .deals.Kanban-view .deal-head .form-check-label {
  font-size: 12px;
  font-weight: bold;
}
.sky-dashboard .deals.Kanban-view .deal-body .item {
  padding: 15px;
}
.sky-dashboard .deals.Kanban-view .deal-body .item .card-dots {
  position: absolute;
  top: 20px;
  right: 20px;
}
.sky-dashboard .deals.Kanban-view .deal-body .item .form-check-input {
  display: none;
}
.sky-dashboard .deals.Kanban-view .deal-body .item .form-check {
  margin-bottom: 15px !important;
  padding-inline-end: 30px !important;
  padding-inline-start: 0 !important;
}
.sky-dashboard .deals.Kanban-view .deal-body .item .tags {
  margin-bottom: 15px;
}
.sky-dashboard .deals.Kanban-view .deal-body .item .tags .tag {
  margin-inline-start: 0;
  margin-inline-end: 5px;
}
.sky-dashboard .deals.Kanban-view .deal-body .item .btm-inf {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 15px;
  border-top: 1px solid #dee2e6;
}
.sky-dashboard .deals.Kanban-view .deal-body .item .avatars-imgs {
  position: relative;
  margin-inline-end: 15px;
}
.sky-dashboard .deals.Kanban-view .deal-body .item .avatars-imgs .user-img {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 -7px;
}
.sky-dashboard .deals.Kanban-view .deal-body .item .avatars-imgs .user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sky-dashboard .deals.Kanban-view .deal-body .item .avatars-imgs .user-img:hover {
  z-index: 5;
}
.sky-dashboard .deals.table-view {
  position: relative;
  padding-top: 30px;
}
.sky-dashboard .deals.table-view .table {
  border: 0;
}
.sky-dashboard .deals.table-view .table .form-check .form-check-input {
  border-radius: 4px;
}
.sky-dashboard .deals.table-view .table .tag {
  border: 0;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
}
.sky-dashboard .deals.table-view .table .tag.cr-blue1 {
  color: #4E57EF;
  background-color: rgba(78, 87, 239, 0.0823529412);
}
.sky-dashboard .deals.table-view .table .tag.cr-cyan1 {
  color: #33CFFF;
  background-color: rgba(51, 207, 255, 0.0823529412);
}
.sky-dashboard .deals.table-view .table .tag.cr-purple1 {
  color: #936DFF;
  background-color: rgba(147, 109, 255, 0.0823529412);
}
.sky-dashboard .deals.table-view .table .tag.cr-red1 {
  color: #DF1C41;
  background-color: rgba(223, 28, 65, 0.0823529412);
}
.sky-dashboard .deals.table-view .table .tag.cr-green1 {
  color: #4FBE88;
  background-color: rgba(79, 190, 136, 0.0823529412);
}
.sky-dashboard .deals.table-view .table .avatars-imgs .user-img {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 -7px;
}
.sky-dashboard .deals.table-view .table .avatars-imgs .user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sky-dashboard .deals.table-view .table .avatars-imgs .user-img:hover {
  z-index: 5;
}
.sky-dashboard .dash-breadcrumb {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px dashed #dee2e6;
}
.sky-dashboard .dash-breadcrumb .links {
  display: flex;
}
.sky-dashboard .dash-breadcrumb .links a {
  position: relative;
  padding-inline-end: 25px;
  margin-inline-end: 20px;
}
.sky-dashboard .dash-breadcrumb .links a::after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  right: 0;
}
.sky-dashboard .dash-breadcrumb .links a:last-of-type {
  font-weight: 600;
  color: #000;
}
.sky-dashboard .dash-breadcrumb .links a:last-of-type::after {
  display: none;
}
.sky-dashboard .deal-details-pg {
  position: relative;
}
.sky-dashboard .deal-details-pg .deal-det .details-card {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  background-color: #F4F6F6;
  margin-top: 30px;
}
.sky-dashboard .deal-details-pg .deal-det .details-card .card-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px dashed #dee2e6;
}
.sky-dashboard .deal-details-pg .deal-det .details-card .card-info .item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.sky-dashboard .deal-details-pg .deal-det .details-card .card-info .item .row {
  flex-grow: 1;
}
.sky-dashboard .deal-details-pg .deal-det .details-card .card-info .item .item-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
}
.sky-dashboard .deal-details-pg .sub-deals {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
  margin-top: 30px;
  border: 1px solid #dee2e6;
}
.sky-dashboard .deal-details-pg .sub-deals .card-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px dashed #dee2e6;
}
.sky-dashboard .deal-details-pg .sub-deals .card-info .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  margin-top: 10px;
}
.sky-dashboard .deal-details-pg .sub-deals .card-info .item h6 {
  font-size: 14px;
}
.sky-dashboard .deal-details-pg .sub-deals .card-info .item .item-cont {
  display: flex;
  align-items: center;
}
.sky-dashboard .deal-details-pg .comments {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
  margin-top: 30px;
  border: 1px solid #dee2e6;
}
.sky-dashboard .deal-details-pg .comments .card-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px dashed #dee2e6;
}
.sky-dashboard .deal-details-pg .comments .card-info .item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #dee2e6;
}
.sky-dashboard .deal-details-pg .comments .card-info .item:last-of-type {
  border: 0;
  padding-bottom: 0;
}
.sky-dashboard .deal-details-pg .comments .card-info .item h6 {
  font-size: 14px;
}
.sky-dashboard .deal-details-pg .comments .card-info .item .item-cont {
  display: flex;
  align-items: center;
}
.sky-dashboard .deal-details-pg .comments .card-info .item .icon {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #99AFFF;
  background-color: rgba(153, 175, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: var(--blue);
  margin-inline-end: 10px;
  flex-shrink: 0;
}
.sky-dashboard .deal-details-pg .comments .comment-form {
  position: relative;
}
.sky-dashboard .deal-details-pg .comments .comment-form .form-group {
  position: relative;
}
.sky-dashboard .deal-details-pg .comments .comment-form .form-group button {
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.sky-dashboard .deal-details-pg .progress {
  height: 8px;
  border-radius: 8px;
  width: 100px;
}
.sky-dashboard .deal-details-pg .progress .progress-bar {
  background-color: #ccc;
}
.sky-dashboard .deal-details-pg .avatars-imgs .user-img {
  width: 25px;
  height: 25px;
}

.no-after::after {
  display: none;
}

.offcanvas {
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1333333333);
  border: 0 !important;
  min-width: 500px;
  max-width: 100%;
}

.offcanvas-backdrop.show {
  opacity: 0 !important;
}

.canvas-sector-info .flex-list {
  position: relative;
}
.canvas-sector-info .flex-list li {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}
.canvas-sector-info .flex-list li .comp {
  display: inline-flex;
}
.canvas-sector-info .flex-list li .comp img {
  width: 17px;
  height: 17px;
  margin-inline-end: 5px;
  flex-shrink: 0;
}
.canvas-sector-info .activities {
  position: relative;
}
.canvas-sector-info .activities .item {
  position: relative;
  display: flex;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 15px;
  margin-top: 10px;
}
.canvas-sector-info .activities .item .icon {
  margin-inline-end: 15px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: var(--blue);
  background-color: rgba(61, 46, 132, 0.1333333333);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.upload-wrapper {
  position: relative;
}
.upload-wrapper .upload-area {
  position: relative;
  margin-top: 10px;
}
.upload-wrapper .upload-area #dropFileForm {
  border-radius: 6px;
  overflow: hidden;
  transition: 0.5s;
  position: relative;
}
.upload-wrapper .upload-area #dropFileForm #fileLabelText {
  font-weight: normal;
  line-height: 2;
}
.upload-wrapper .upload-area #dropFileForm #fileLabelText i {
  font-size: 10px;
}
.upload-wrapper .upload-area #dropFileForm #fileLabel {
  display: flex;
  padding: 10px 40px;
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  border-radius: 15px;
  border: dashed 2px rgba(153, 153, 153, 0.2);
  background-color: #F5F7FA;
  padding: 70px 50px;
}
.upload-wrapper .upload-area #dropFileForm #fileInput {
  display: none;
}
.upload-wrapper .upload-area #dropFileForm #fileLabel:after,
.upload-wrapper .upload-area #dropFileForm #fileLabel:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: -2;
  border-radius: 8px 8px 0 0;
}
.upload-wrapper .upload-area #dropFileForm #fileLabel:before {
  z-index: -1;
  background: repeating-linear-gradient(45deg, transparent, transparent 5%, black 5%, black 10%);
  opacity: 0;
  transition: 0.5s;
}
.upload-wrapper .upload-area #dropFileForm.fileHover #fileLabel:before {
  opacity: 0.05;
}
.upload-wrapper .uploaded-imgs {
  padding-top: 20px;
}
.upload-wrapper .uploaded-imgs .img-thumbnail {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-grow: 1;
  /* border: 0; */
  border-radius: 10px;
  padding: 0;
}
.upload-wrapper .uploaded-imgs .hidden-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  flex-grow: 1;
  color: #fff;
  font-size: 1.2em;
  border-radius: 5px;
  text-align: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.6);
}

.contact-summary {
  position: relative;
  padding: 30px;
  background-color: #F5F7FA;
  margin-top: 50px;
}
.contact-summary .cards {
  padding-top: 50px;
}
.contact-summary .cards .item {
  position: relative;
  margin: 30px 0;
  text-align: center;
}

.contact-info-pg {
  position: relative;
}
.contact-info-pg .pg-head {
  position: relative;
  padding: 30px;
  border-bottom: 1px solid #dee2e6;
}
.contact-info-pg .pg-body {
  position: relative;
  padding: 30px;
}
.contact-info-pg .info-side {
  position: relative;
  height: 100%;
  border-inline-end: 1px solid #dee2e6;
  padding-inline-end: 15px;
}
.contact-info-pg .main-card {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dee2e6;
}
.contact-info-pg .main-card .avatar-content {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.contact-info-pg .main-card .avatar-wrapper {
  position: relative;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin-inline-end: 15px;
  flex-shrink: 0;
}
.contact-info-pg .main-card .avatar-wrapper .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #999;
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 10;
}
.contact-info-pg .main-card .avatar-wrapper .dot.green {
  background-color: #40C4AA;
}
.contact-info-pg .main-card .call-items {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 4vw;
  padding-top: 20px;
}
.contact-info-pg .main-card .call-items .item {
  position: relative;
  margin-top: 20px;
}
.contact-info-pg .main-card .call-items .item .icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.contact-info-pg .main-card .call-items .item:hover {
  color: var(--blue);
}
.contact-info-pg .main-card .call-items .item:hover .icon {
  border-color: var(--blue);
}
.contact-info-pg .activities {
  position: relative;
}
.contact-info-pg .activities .item {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 15px;
  margin-top: 10px;
}
.contact-info-pg .activities .item .icon {
  margin-inline-end: 15px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: var(--blue);
  background-color: rgba(61, 46, 132, 0.1333333333);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-info-pg .flex-list li {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}
.contact-info-pg .flex-list li .comp {
  display: inline-flex;
}
.contact-info-pg .flex-list li .comp img {
  width: 17px;
  height: 17px;
  margin-inline-end: 5px;
  flex-shrink: 0;
}
.contact-info-pg .top-actions * {
  font-size: 13px;
  font-weight: 600;
}
.contact-info-pg .data-box {
  position: relative;
  border: 1px solid #dee2e6;
  border-radius: 15px;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 50px;
}
.contact-info-pg .data-box .item {
  position: relative;
  text-align: center;
  margin-top: 30px;
}
.contact-info-pg .data-box .item .text {
  font-size: 16px;
  margin-top: 5px;
  opacity: 0.8;
}
.contact-info-pg .comp-card {
  position: relative;
  border: 1px solid #dee2e6;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
}
.contact-info-pg .comp-card .top-inf {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.contact-info-pg .comp-card .top-inf .brand {
  width: 65px;
  height: 65px;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

/* --------------- modals --------------- */
@media (min-width: 992px) {
  .modal-md, .modal-md {
    --bs-modal-width: 650px;
  }
}
.modal .modal-content {
  border: 0;
  border-radius: 15px;
}
.modal .map {
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
}
.modal .map iframe {
  margin-bottom: -6px;
}

.modal-show-task .task-tags {
  position: relative;
  display: flex;
  gap: 10px;
  padding-top: 15px;
}
.modal-show-task .task-tags .tag-wrapper {
  position: relative;
  padding: 5px 10px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.modal-show-task .tag {
  position: relative;
  padding: 4px 10px;
  border-radius: 5px;
  background-color: rgba(153, 153, 153, 0.1333333333);
  font-size: 12px;
}
.modal-show-task .tag.cr-blue1 {
  color: #4E57EF;
  background-color: rgba(78, 87, 239, 0.0823529412);
}
.modal-show-task .tag.cr-green1 {
  color: #4FBE88;
  background-color: rgba(51, 207, 255, 0.0823529412);
}
.modal-show-task .tag.cr-cyan1 {
  color: #33CFFF;
  background-color: rgba(51, 207, 255, 0.0823529412);
}
.modal-show-task .tag.cr-purple1 {
  color: #936DFF;
  background-color: rgba(147, 109, 255, 0.0823529412);
}
.modal-show-task .tag.cr-red1 {
  color: #DF1C41;
  background-color: rgba(223, 28, 65, 0.0823529412);
}
.modal-show-task .avatars-imgs {
  position: relative;
}
.modal-show-task .avatars-imgs .user-img {
  position: relative;
  width: 25px;
  height: 25px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 -4px;
}
.modal-show-task .avatars-imgs .user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal-show-task .avatars-imgs .user-img:hover {
  z-index: 5;
}

.avatar-upload {
  position: relative;
  display: flex;
  align-items: center;
}
.avatar-upload .avatar-edit {
  position: relative;
  padding: 8px 15px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-inline-start: 30px;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-preview {
  width: 65px;
  height: 65px;
  position: relative;
  border-radius: 50%;
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.modal-contact-info .main-card {
  position: relative;
  padding: 30px;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  text-align: center;
}
.modal-contact-info .main-card .avatar-wrapper {
  position: relative;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.modal-contact-info .main-card .avatar-wrapper .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #999;
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 10;
}
.modal-contact-info .main-card .avatar-wrapper .dot.green {
  background-color: #40C4AA;
}
.modal-contact-info .main-card .call-items {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.modal-contact-info .main-card .call-items .item {
  position: relative;
  margin-top: 20px;
}
.modal-contact-info .main-card .call-items .item .icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal-contact-info .main-card .call-items .item:hover {
  color: var(--blue);
}
.modal-contact-info .main-card .call-items .item:hover .icon {
  border-color: var(--blue);
}
.modal-contact-info .activities {
  position: relative;
  border: 1px solid #dee2e6;
  border-radius: 15px;
  padding: 15px;
}
.modal-contact-info .activities .item {
  position: relative;
  display: flex;
}
.modal-contact-info .activities .item .icon {
  margin-inline-end: 15px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: var(--blue);
  background-color: rgba(61, 46, 132, 0.1333333333);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-contact-info .flex-list li {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}
.modal-contact-info .flex-list li .comp {
  display: inline-flex;
}
.modal-contact-info .flex-list li .comp img {
  width: 17px;
  height: 17px;
  margin-inline-end: 5px;
  flex-shrink: 0;
}

.tag {
  border: 0;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  white-space: nowrap;
}
.tag .fa-circle {
  font-size: 4px;
  margin-inline-end: 3px;
  position: relative;
  top: -2px;
}
.tag.cr-blue1 {
  color: #4E57EF;
  background-color: rgba(78, 87, 239, 0.0823529412);
}
.tag.cr-cyan1 {
  color: #33CFFF;
  background-color: rgba(51, 207, 255, 0.0823529412);
}
.tag.cr-purple1 {
  color: #936DFF;
  background-color: rgba(147, 109, 255, 0.0823529412);
}
.tag.cr-red1 {
  color: #DF1C41;
  background-color: rgba(223, 28, 65, 0.0823529412);
}
.tag.cr-green1 {
  color: #4FBE88;
  background-color: rgba(79, 190, 136, 0.0823529412);
}

/* --------------- content-pg --------------- */
.content-pg .text,
.content-pg li {
  font-size: 16px;
  margin: 10px 0;
  color: #777;
}

.section-filters .x-btn {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    background-color: #ffcbcb;
    font-size: 20px;
    width: 38px;
    height: 38px;
    border-radius: 10px;

}

/* ======== */
@media screen and (max-width: 991px) {
  .sky-dashboard .dashboard .sidemenu {
    width: 60px;
    overflow: hidden;
  }
  .sky-dashboard .dashboard .sidemenu .search-wrapper {
    display: none;
  }
  .sky-dashboard .dashboard .sidemenu .sidemenu-links .sub-title {
    display: none;
  }
  .sky-dashboard .dashboard .sidemenu .sidemenu-links .links .lnk .txt {
    display: none;
  }
  .sky-dashboard .dashboard .sidemenu .user-wrapper .inf {
    display: none;
  }
  .sky-dashboard .dashboard .dashboard-body {
    padding: 0 10px;
  }
  .sky-dashboard .butn-st2 {
    font-size: 12px;
    padding: 5px 15px !important;
  }
  .sky-dashboard .nav-butns {
    flex-wrap: wrap;
  }
  .sky-dashboard .nav-butns .butn-st2 {
    margin-top: 10px;
    margin-inline-start: 0 !important;
    margin-inline-end: 10px;
  }
  .title-aside {
    justify-content: space-between;
  }
  .company-row .text {
    margin-top: 10px;
  }
  .body-title {
    margin-bottom: 30px;
  }
  .line_chart {
    width: 300px;
  }
  .line_chart svg {
    width: 300px;
  }
  .login-pg .logo-side {
    height: -moz-max-content;
    height: max-content;
    padding: 50px 0;
    min-height: auto;
  }
  .login-pg .logo-side .logo {
    height: 100px;
  }
  .login-pg .form-side {
    height: -moz-max-content;
    height: max-content;
  }
  .tasks .tasks-box .task-head .btns {
    margin-top: 0 !important;
  }
  .tasks .tasks-box .task-body .item .tags {
    margin-top: 15px;
  }
}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */



/*19/03/2025*/

.search_filter_form .nav-butns .butn {
    margin-inline-start: 10px !important;
}

.dragging {
    opacity: 0.6;
    background: #3d2e8422;
}
.drag-column {
    min-height: 300px;
}






