@import url("https://fonts.cdnfonts.com/css/roboto-condensed-3");
.primary-color {
  /* color: #1b55e2 !important; */
  /* color: #132d6e !important;  */
  color: #2c6fbb !important;
}
/* Dashboard color Start */

.w-blue {
  color: #1b55e2 !important;
}
.w-bg-blue {
  background: #c2d5ff !important;
}
.w-purple {
  color: #5c1ac3 !important;
}
.w-bg-purple {
  background: #dccff7 !important;
}
.w-red {
  color: #e7515a !important;
}
.w-bg-red {
  background: #ffe1e2 !important;
}
.w-green {
  color: #28a745 !important;
}
.w-bg-green {
  background: #c6ffd3 !important;
}
.w-yellow {
  color: #e2a03f !important;
}
.w-bg-yellow {
  background: #ffeccb !important;
}

/* New Login Page Start */

.login-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e4f0f8;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.login-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/login-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}
.circle-1 {
  background-color: #2259d0;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  position: absolute;
  top: -140px;
  right: 20px;
  opacity: 0.05;
  z-index: -1;
}
.circle-2 {
  background-color: #2259d0;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  right: -150px;
  opacity: 0.05;
  z-index: -1;
}
.form-title {
  position: relative;
}
.form-title::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 162px;
  background-color: #2c6fbb;
  bottom: -4px;
}
.form-title img {
  height: 22px;
  width: 22px;
  margin-right: 8px;
}
.form-title h5 {
  font-family: "Nunito", sans-serif;
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 0;
}
.form-title h5 span {
  color: #2c6fbb;
}

/* login card */

.login-card {
  display: flex;
  min-height: 400px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}
.left-info {
  padding: 2rem 0.7rem 2rem 3rem;
}
.left-info img {
  width: 50%;
  margin-bottom: 2rem;
}
.login-title {
  font-size: 2rem;
  color: #2c6fbb;
  font-weight: 600;
}
.login-subtitle {
  color: #6b7280;
  font-size: 0.9rem;
}
.login-subtitle span {
  font-weight: 700;
  color: #2259d0;
}
.input-field {
  margin-top: 2rem;
}
.password-field {
  position: relative;
}
.password-field svg {
  position: absolute;
  top: 6px;
  left: 6px;
  color: #2c6fbb;
  fill: rgba(27, 85, 226, 0.239216);
}
.password-field input {
  border-radius: 0;
  border-top: none;
  border-right: 2px solid #dee2e6;
  border-bottom: 2px solid #dee2e6;
  border-left: none;
  padding: 8px 40px;
}
.password-field input:focus {
  outline: none;
  box-shadow: none;
}
.password-field input::placeholder {
  font-size: 14px;
  color: #6b7280;
}
.actions {
  margin-top: 40px;
}
.primary-btn {
  background-color: #2259d0;
  color: white;
  border-radius: 8px;
  padding: 10px 24px;
  border: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.actions p {
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
}
.actions p:hover {
  color: black;
}

/* image styling */
.login-card .image-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 6px;
}
.login-card .image-container img {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 770px) {
  .login-card {
    display: block;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1) ;
  }
  .left-info-login{
    margin-top: 40px;
  }
}

/* New Login Page End */


/* Login */
.wrap {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
}
.login-img {
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../../img/cki_map.jpg);
}
.login-wrap {
  width: 50%;
}

/* Login End */

/* Dashboard color End */
.btn {
  padding: 0.313rem 1.25rem;
}
.btn-bgt-tooltip {
  background-color: #4f709c !important;
}
.primary-sub-label {
  color: #3f51b5 !important;
}
.primary-plus-green {
  color: #009688;
}
.btn-print-primary {
  color: #fff;
  background-color: #3b82f6 !important;
  border-color: #2c6fbb !important;
}
.btn-print-secondary {
  color: #fff;
  background-color: #6366f1 !important;
  border-color: #2c6fbb !important;
}
.btn-print-primary:hover {
  color: #fff !important;
}
.btn-print-secondary:hover {
  color: #fff !important;
}
.w-35 {
  width: 35%;
}
.btn-err-amt {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
/* .text-danger{
  font-size: 14px !important;
  color: red !important;
} */
.text-green {
  font-size: 14px !important;
  color: #008000 !important;
}
@media (min-width: 992px) {
  .mt-form {
    margin-top: 1.9rem;
  }
}
.form-details :focus-visible {
  outline: none;
}
.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #2c6fbb !important;
  background-color: #2c6fbb !important;
}
.modal {
  overflow: auto !important;
}
.modal-dialog {
  margin: 0 auto;
}
.main-form .modal-header {
  border-bottom: 1px solid #b3b3b3;
}
.main-form .modal-footer {
  border-top: 1px solid #b3b3b3;
}
.btn-primary-form {
  color: #fff !important;
  background-color: #2c6fbb !important;
  border-color: #2c6fbb !important;
}
.btn-secondary-form {
  background-color: #8388a4 !important;
  color: white !important;
}
.btn-secondary-form-75 {
  color: #fff;
  background-color: rgba(44, 111, 187, 0.75);
}
.btn-pay {
  background-color: #008000 !important;
  border-color: #008000 !important;
}
.btn-efile {
  padding: 0.3rem 0.75rem !important;
}
.search-form {
  background-color: rgba(44, 111, 187, 0.06);
  margin: 0 14px 10px;
  padding: 10px;
  border-radius: 8px;
}
.search-sub-form {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
}
.form-details .form-control:focus {
  border-color: #2c6fbb !important;
}
.form-details label {
  color: #2c6fbb;
  font-weight: 600;
  letter-spacing: 0px;
}
.form-details label i {
  margin-right: 10px;
}
.form-details .custom-control-label {
  color: #4d4d4d !important;
  font-weight: 400 !important;
}
.main-form {
  max-width: 1500px;
}
/* .layout-px-spacing {
  padding: 0 20px 0 !important;
  min-height: calc(100vh - 170px) !important;
} */
.layout-top-spacing {
  margin-top: 20px;
}
.main-form .form-title .form-title-icon {
  border-radius: 5px;
  border-right: 3px solid #fff;
  margin-right: 20px;
  box-shadow: 2px 5px 17px 0 rgba(31, 45, 61, 0.17);
  width: 60px;
  height: 60px;
  color: #1b55e2;
}
.main-form .form-title .form-title-icon i {
  color: #fff;
  font-size: 1.6rem;
}
.main-form .form-title .close i {
  color: #fff;
  font-size: 2rem;
  padding-right: 10px;
}
.main-form .form-title h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.main-form .form-overlay {
  height: 5.5rem;
  background-color: #2c6fbb;
  border-radius: 5px;
  padding: 0 1rem;
}
.main-form .widget-content-area {
  padding: 20px 0;
}
.main-form .search-placeholder::placeholder {
  font-size: 12px;
  opacity: 0.8;
}
.fs-1 {
  font-size: 12px;
}
.lh-1 {
  line-height: 1;
}
.form-details .form-sub-title {
  /* padding: 18px;
  box-shadow: 2px 2px 10px 0 rgba(31, 45, 61, 0.2);
  background: #fff;
  border-radius: 5px; */
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(44, 111, 187, 0.2);
}
.form-sub-title h3::first-letter {
  font-size: 20px;
  font-weight: 500;
  color: #2c6fbb;
}
.form-details .form-sub-title h3 {
  font-family: "Montserrat", sans-serif;
  /* position: relative;
  display: inline-block; */
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 0;
  font-weight: 500;
  color: #343434;
}
.form-details .form-sub-title h5 {
  font-size: 17px;
  font-weight: 600;
}
.form-section {
  padding: 0 1rem;
}
.form-details .form-group span {
  font-size: 1.2rem;
  color: #4d4d4d;
  padding-left: 5px;
}
.search-sub-title {
  font-size: 0.8rem !important;
  padding-left: 0 !important;
  font-style: italic !important;
}
.edit-form-info {
  border: 1px solid #2c6fbb;
  border-radius: 8px;
  padding: 30px 0px 18px;
  position: relative;
  margin-top: 5px;
}
.edit-form-info h3 {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: -15px;
  left: 20px;
  background: white;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
}
.commit-dollar {
  background-color: #f4f4f4;
  padding: 18px;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.commit-dollar h5 {
  font-weight: 600;
  letter-spacing: 0;
}
/* .form-details .form-sub-title h3:after {
  position: absolute;
  content: "";
  height: 2px;
  width: calc(100% - 5px);
  background: #1b55e2;
  border-radius: 50%;
  bottom: -2px;
  left: 15px;
} */

#general-firm-info .form-control,
#owner-info .form-control {
  height: auto;
  line-height: 16px;
  padding: 0.375rem 0.75rem;
}
.account-modal .modal-dialog {
  max-width: 100% !important;
}
.acc-list h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #2c6fbb;
  margin: 0;
}
.list-edit i {
  font-size: 16px;
  font-weight: 700;
  color: #3ea6e7;
}
.list-delete i {
  font-size: 14px;
  font-weight: 700;
  color: #e34739;
}
.main-form .dt-button {
  border: none;
  box-shadow: none;
  background-color: white;
  padding-left: 12px;
}
/* .main-form .statbox .widget-header {
  padding: 1.5rem 1.5rem 0;
 } */
.form-details .custom-file-up {
  margin: 0;
  padding: 0;
  height: 0;
}
/* test */
.main-form .card {
  border: none;
  background-color: transparent;
}
.main-form .card .card-header {
  border-bottom: none;
  background-color: transparent;
  padding: 0;
}
.main-form .tab-title .nav-pills .nav-link.active {
  color: #06b6d4;
}
.main-form .tab-title .nav-pills a.nav-link:hover {
  color: #06b6d4;
}
.main-form .tab-title .nav-pills .nav-link.active svg {
  color: #0691a9;
  fill: none;
}
.main-form .tab-title .nav-pills a.nav-link svg {
  fill: none;
}
.main-form .tab-title .nav-pills a.nav-link:hover svg {
  color: #0691a9;
}

/* Form Pages */
.tab-title .todoList-sidebar-scroll {
  position: relative;
  width: 100%;
  height: calc(100vh - 302px);
}
.tab-title .nav-pills .nav-link.active {
  background-color: transparent;
  color: #1b55e2;
  color: #1b55e2;
  background: #ebedf2;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 10px 12px 10px 14px;
}
.tab-title .nav-pills a.nav-link {
  position: relative;
  font-weight: 700;
  color: #888ea8;
  border-radius: 0;
  padding: 20px 0px 20px 15px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.main-form .form-list-title {
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #2c6fbb;
}
.main-form .form-list-title h5 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #2c6fbb;
}
.main-form .tab-title-icon {
  background-color: #2c6fbb;
  color: #fff;
  border-radius: 3px;
  margin-left: 6px;
  box-shadow: 0px 5px 8px 0px rgba(44, 111, 187, 0.380392);
}
.main-form .tab-sub-title {
  color: #959bb7;
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 0;
  letter-spacing: 0px;
}
.tab-pane label {
  font-size: 14px;
  font-weight: 600;
}
.tab-title .edit-sub-icon svg.feather-clipboard {
  color: #07abc7;
  fill: none;
}
/* Payment Page  */
.payment-form {
  max-width: 1100px !important;
}
.main-form .form-card {
  padding: 22px 8px;
}

/* Search Section */

.filter-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #666;
}
.search-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  width: 100%;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 10;
}
.search-dropdown.active {
  display: block;
}
/* .search-dropdown input {
  width: 90%;
  padding: 8px 10px;
  margin: 5px auto;
  display: block;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
} */
/* .list-search {
  margin-top: 0;
  margin-bottom: 10px;
} */
.list-search-relative {
  position: relative;
}
.list-search input {
  border: none;
  padding: 11px 50px;
  background: #fff;
  -webkit-box-shadow: 0 0 4px 2px rgba(31, 45, 61, 0.1);
  box-shadow: 0 0 4px 2px rgba(31, 45, 61, 0.1);
}
.list-search input:focus {
  box-shadow: 0 0 4px 2px rgba(31, 45, 61, 0.1);
}
.list-search button {
  border-radius: 50%;
  padding: 7px 7px;
  position: absolute;
  left: 3px;
  top: 3px;
}
.list-search button:hover {
  transform: none;
}
.list-search input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #888ea8;
}

/* Edit Form */

.hidden-form {
  display: none;
}
.edit-drop-form .form-drop {
  border-width: 14px;
  border-style: solid;
  border-color: #2c6fbb #5ea4f3;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
  padding: 15px 20px;
  /* max-width: 600px; */
  margin: 0.5rem auto;
}
.edit-drop-form .form-drop .save-drop {
  border-top: 2px solid rgba(44, 111, 187, 0.4);
  margin-top: 6px;
  padding-top: 18px;
}
.edit-drop-form label {
  color: #2c6fbb;
  font-weight: 500;
  letter-spacing: 0px;
}
.edit-title {
  border-left: 3px solid #2c6fbb;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  color: #2c6fbb;
  margin-bottom: 0.3rem;
}
/* eFiles */
#efile-form label {
  font-size: 15px !important;
  font-weight: 600 !important;
}
.efile-title {
  background: rgba(44, 111, 187, 0.8);
  padding: 0.5rem;
}
.efile-title h5 {
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  color: white;
  margin-bottom: 0;
}
.efile-main {
  border: 1px solid rgba(44, 111, 187, 0.3);
}
/* Sweet ALert Custom CSS start */
.swal2-icon-content {
  font-size: 2.75em !important;
}
.swal2-icon {
  width: 3em !important;
  height: 3em !important;
  font-size: 0.8rem !important;
  margin: 2em auto 0.2em !important;
}
.swal2-title {
  font-size: 1.5em !important;
}
.swal2-actions .swal2-styled {
  padding: 0.3em 1em !important;
}
.swal2-success-circular-line-left {
  transform-origin: 0 !important;
}
.swal2-success-line-tip {
  top: 1.7em !important;
  left: 0.2em !important;
  width: 1.1em !important;
}
.swal2-success-line-long {
  top: 1.5em !important;
  right: 0.2em !important;
  width: 2em !important;
}
.swal2-x-mark-line-left {
  left: 0.57em !important;
}
.swal2-x-mark-line-right {
  right: 0.54em !important;
}
div:where(.swal2-icon).swal2-error [class^="swal2-x-mark-line"] {
  top: 1.4em !important;
  width: 1.9375em !important;
  height: 0.3em !important;
}
/* Sweet ALert Custom CSS end */

/* Test Edit */

.box-form {
  width: 90%;
}

.box-login-tab {
  width: 12%;
  height: 36px;
  background: #fdfdfd;
  position: relative;
  float: left;
  z-index: 2;
  border: 2px solid #2c6fbb;
  border-bottom: 0;

  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;

  -webkit-transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
  transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  -webkit-box-shadow: 15px -15px 30px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 15px -15px 30px rgba(0, 0, 0, 0.32);
  box-shadow: 10px -8px 30px rgba(0, 0, 0, 0.12);
}
.box-login-tab.forecast {
  width: 17%;
}
.box-login-tab.budget {
  width: 16%;
}
.box-login-tab.fund-src {
  width: 24%;
}

.box-login-title {
  padding: 8px 13px;
  position: absolute;
  float: left;
  z-index: 2;
}
.box-login-title h5 {
  font-size: 0.9rem;
  color: #2c6fbb;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}

.box-login {
  border: 2px solid #2c6fbb;
  position: relative;
  top: -4px;
  float: left;
  background: #fdfdfd;
  z-index: 1;
  padding: 20px;

  -webkit-border-top-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  -moz-border-radius-bottomleft: 6px;
  -moz-border-radius-bottomright: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;

  -webkit-box-shadow: 15px 30px 30px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 15px 30px 30px rgba(0, 0, 0, 0.32);
  box-shadow: 5px 15px 30px rgba(0, 0, 0, 0.12);
}

/* Test Edit 2 */
.contact-form {
  background: rgba(44, 111, 187, 0.16);
  margin-top: 5%;
  margin-bottom: 5%;
  width: 80%;
  border-radius: 6px;
  border: 2px solid rgba(44, 111, 187, 0.5);
}
.contact-form .form-control {
  border-radius: 1rem;
}
.contact-image {
  text-align: center;
}
.contact-image img {
  border-radius: 6rem;
  width: 10%;
  margin-top: -5%;
  transform: rotate(29deg);
}
.contact-form form {
  padding: 2%;
}

/* Test Edit 3 */
.edit-form {
  border: 1px solid rgba(44, 111, 187, 0.5);
  width: 95%;
  margin: auto;
  border-radius: 6px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}
.edit-card-header {
  background-color: rgba(44, 111, 187, 0.85) !important;
  color: #fff;
}

/* Tooltip Background */
.tooltip-inner {
  background-color: rgba(44, 111, 187, 0.8);
  color: #fff !important;
  border-radius: 6px;
}
.bs-tooltip-top .arrow::before {
  border-top-color: #2c6fbb !important;
}

.widget-chart-border {
  border-left: 6px solid #2c6fbb !important;
}

.budget-field input {
  width: 100%;
  padding: 4px;
  box-sizing: border-box;
  border: 1px solid #ccc; /* optional: style inputs */
  border-radius: 5px;
}

.budget-field th,
td {
  padding: 5px;
}

/* .field-col {
  width: 30%; 
} */

/* Style for the new table */
.new-table {
  width: 100%;
  border-collapse: collapse;
}

.new-table th,
.new-table td {
  padding: 10px;
  border: 1px solid rgba(221, 221, 221, 0.4);
  text-align: left;
}

.new-table th:first-child,
.new-table td:first-child {
  width: 248px;
}

.new-table-summary tr:hover td {
  background-color: #7fa1c3 !important;
  color: #fff;
  cursor: pointer;
}

.new-table-summary th,
.new-table-summary td {
  border: 1px solid rgba(0, 150, 136, 0.3);
}

.budget-summary td {
  padding: 0.6rem 0.5rem;
}

.budget-summary {
  border: 1px solid rgba(0, 150, 136, 0.3);
  padding: 6px;
  border-radius: 4px;
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.08);
}

.budget-summary th {
  padding: 10px;
}

.budget-summary-title-line {
  width: 100%;
  text-align: center;
  border-bottom: 2px solid rgba(127, 161, 195, 0.5);
  line-height: 0.1em;
  margin: 25px 0 12px;
}

.budget-summary-title {
  background: #fff; /* same as page background */
  padding: 0 12px;
  font-size: 22px;
  color: #4f709c;
  position: relative;
  top: 0.2em;
  font-weight: bold;
}

.new-table-summary tr:nth-child(odd) {
  background-color: white;
}

.new-table-summary tr:nth-child(even) {
  background-color: #f0f0f0; /* light gray */
}

/* Budget table  */
.card__content {
  width: 98%;
  position: relative;
  background-color: #fff;
  padding: 1.5rem 1.1rem 1.1rem;
  /* border-radius: 0.5rem; */
  border: 1px solid rgba(229, 57, 57, 0.3);
  box-shadow: 0 1px 12px hsla(210, 61%, 16%, 0.1);
  transition: 0.4s;
}
.card__content:hover {
  box-shadow: 0 5px 12px hsla(210, 61%, 16%, 0.25);
}
.card__pricing {
  position: absolute;
  width: 60px;
  height: 140px;
  left: -16px;
  top: 15px;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.card__pricing::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 80px;
  background: linear-gradient(90deg, #578fca, #65a2e3 20%);
  top: 0;
  left: -29px;
  transform: rotateY(75deg);
  border-radius: 0 100px 100px 0 / 0 20px 20px 0;
  box-shadow: 0 16px 24px hsla(210, 61%, 16%, 0.15);
}
.card__pricing2::before {
  background: linear-gradient(90deg, #398de5, #50b7ff 20%);
}
.card__pricing::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 112px;
  background-color: #2c6fbb;
  top: -16px;
  left: 2px;
  border-radius: 50px 0 0 50px / 80px 0 0 80px;
}
.card__pricing1::after {
  background-color: #b51cdd;
}
.card__pricing2::after {
  background-color: #1585b7;
}
.card__button {
  padding: 0.3rem;
  border: none;
  font-size: 0.938rem;
  border-radius: 0.4rem;
  background: linear-gradient(157deg, hsl(210, 96%, 54%) -12%, hsl(210, 96%, 54%) 109%);
  color: #fff;
  cursor: pointer;
  transition: 0.4s;
  width: 10%;
  font-weight: bold;
}
.card__button:hover {
  box-shadow: 0 16px 24px hsla(210, 61%, 16%, 0.15);
}

/* Apex chart */

.apexcharts-title-text {
  font-weight: 500 !important;
}

/* Recently added */

.custom-file-container__custom-file__custom-file-control {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Dashboard part */
.dash-card {
  box-shadow: 0 2px 4px rgba(0, 0, 20, 0.08), 0 1px 2px rgba(0, 0, 20, 0.08);
  border: 0;
  border-radius: 0.5rem;
}
.dash-card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}
.icon-shape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  width: 2.5rem;
  height: 2.5rem;
}


