/**=====================
    Card CSS Start
==========================**/
.calender-box {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  .calender {
    .form-control {
      width: 260px;
    }
    svg {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 8px;
      color: #777;
      width: 18px;
      height: auto;
    }
  }

  .rdrDayInPreview {
    border-color: var(--theme-color);
  }

  .rdrWeekDay {
    font-weight: 400;
    line-height: 1.3;
    color: #777;
    font-size: 13px;
  }

  .rdrStaticRange {
    border-bottom: unset !important;
    font-size: 14px;

    + .rdrStaticRange {
      border-top: 1px solid #eee;
    }

    &.rdrStaticRangeSelected {
      color: var(--theme-color) !important;
    }
  }

  .rdrInputRangeInput {
    border-radius: 0;
  }

  .rdrDay {
    &.rdrDayStartOfMonth {
      .rdrInRange {
        ~ .rdrDayNumber {
          span {
            color: white !important;
          }
        }
      }
    }
  }

  .rdrDayStartOfMonth .rdrStartEdge ~ .rdrDayNumber span {
    color: white !important;
  }

  .rdrDay:not(.rdrDayPassive) .rdrStartEdge ~ .rdrDayNumber span,
  .rdrDay:not(.rdrDayPassive) .rdrEndEdge ~ .rdrDayNumber span {
    color: white;
  }

  .rdrDay:not(.rdrDayPassive) .rdrInRange ~ .rdrDayNumber span,
  .rdrDay:not(.rdrDayPassive) .rdrSelected ~ .rdrDayNumber span {
    color: var(--theme-color);
  }

  .rdrMonthAndYearWrapper {
    height: 40px;
  }

  .rdrDateDisplayItem {
    box-shadow: none;
    border-radius: 0;
    border: 1px solid #eee;

    input {
      height: auto;
      line-height: 1.3;
      font-size: 15px;
      padding: 10px;
      font-weight: 500;
    }
  }

  .rdrDateDisplayItemActive input {
    color: var(--theme-color);
    background-color: #f9f9f6;

    body.dark-only & {
      background-color: rgb(28, 33, 40);
      color: var(--theme-color);
    }
  }

  .rdrInputRanges {
    border-top: 1px solid #eff2f7;
    border-bottom: 1px solid #eff2f7;
    margin-bottom: 14px;
  }

  .rdrDayStartOfMonth,
  .rdrDayStartOfWeek,
  .rdrDayEndOfMonth,
  .rdrDayEndOfWeek {
    .rdrInRange,
    .rdrEndEdge {
      border-radius: 0;
    }
  }

  .rdrDayNumber {
    font-weight: 500;
  }

  .rdrDayToday:not(.rdrDayPassive) {
    .rdrInRange,
    .rdrStartEdge {
      ~ .rdrDayNumber {
        span {
          &::after {
            background: var(--theme-color);
          }
        }
      }
    }
  }

  .form-control {
    background-color: rgb(249, 249, 246);
    border: 1px solid rgb(239, 239, 239);
  }

  @media (max-width: 767px) {
    display: none;
  }

  .rdrDayEndPreview,
  .rdrDayStartPreview {
    border-radius: 0;
    border-color: var(--theme-color);

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

  .rdrDateRangePickerWrapper {
    position: absolute;
    top: 60px;
    @include center(horizontal);
    z-index: 20;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(89, 102, 122, 0.1);
    border: 1px solid rgb(238, 238, 238);
    overflow: hidden;

    body.dark-only & {
      border-color: #404040 !important;
    }

    @media (max-width: 1300px) {
      transform: unset;
      left: unset;
      right: 0;
    }

    .rdrDefinedRangesWrapper {
      border-left: unset;
      border-right: 1px solid #eff2f7;

      @media (max-width: 1300px) {
        width: 166px;
      }
    }

    body.dark-only & {
      .rdrDefinedRangesWrapper {
        background: #0b141d;
        color: rgba(255, 255, 255, 0.5);
        border-color: $dark-card-border;

        .rdrStaticRange {
          background-color: #0b141d;
          color: rgba(255, 255, 255, 0.5);
          border-color: $dark-card-border;

          &:hover,
          &:focus {
            .rdrStaticRangeLabel {
              background: transparent;
            }
          }
        }

        .rdrInputRanges,
        .calender-btn-group {
          background-color: #0b141d;
          color: rgba(255, 255, 255, 0.5);
          border-color: $dark-card-border;
        }

        .rdrInputRangeInput {
          background-color: transparent;
          position: relative;
          border-color: $dark-card-border;

          &::before {
            @include pos;
            top: 0;
            left: 0;
            @include pseudowh;
            background-color: var(--theme-color);
            opacity: 0.15;
          }
        }
      }
    }

    .rdrNextPrevButton {
      @include flex_common;
      border-radius: 0;
      background-color: #f8f8f8;
      border: 1px solid #eee;

      i {
        margin: 0;

        [dir="rtl"] & {
          transform: scale(-1) translate(3px, 0px);
        }
      }

      &.rdrPprevButton {
        i {
          [dir="rtl"] & {
            transform: scale(-1) translate(-3px, 0px);
          }
        }
      }
    }

    body.dark-only & {
      background-color: #0b141d;
    }

    .calender-btn-group {
      padding: 0 10px 10px;
      margin-top: 3px;
      display: flex;
      align-items: center;
      justify-content: space-between;

      .close-button {
        padding: calc(5px + 2 * (100vw - 320px) / 1600) calc(13px + 6 * (100vw - 320px) / 1600) !important;
        border: 1px solid var(--theme-color) !important;
        color: var(--theme-color) !important;
        background-color: transparent !important;

        &:hover {
          border-color: transparent !important;
          background-color: var(--theme-color) !important;
          color: $white !important;
        }
      }

      .calender-button {
        padding: calc(5px + 2 * (100vw - 320px) / 1600) calc(13px + 6 * (100vw - 320px) / 1600) !important;
        background-color: var(--theme-color) !important;
        color: $white !important;
        border: 1px solid transparent !important;

        &:hover {
          border: 1px solid var(--theme-color) !important;
          color: var(--theme-color) !important;
          background-color: transparent !important;
        }
      }
    }
  }

  .form-control {
    background-color: #f8f8f8;
    border: 1px solid #efefef;
    color: #444;
    border-radius: 0;

    @media (max-width: 1400px) {
      width: 150px;
    }
  }
}

.title-header {
  padding-bottom: calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
  position: relative;
  color: $dark-card-background;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;

  > form {
    height: 38px;
  }

  a {
    font-size: 16px;
    color: $theme-font-color;
    text-transform: capitalize;

    &.btn {
      font-size: 14px;
      color: $white;
      padding: 7px 11px !important;
      background-color: transparent;
      align-items: center !important;

      &.btn-sm {
        font-weight: 500;
        padding: 7px 16px !important;
      }
    }
  }

  button {
    &.btn {
      font-size: 14px;
      border: 1px solid var(--theme-color);
      padding: 7px 11px;
      color: var(--theme-color);
      background-color: transparent !important;

      &:hover {
        background-color: var(--theme-color) !important;
        color: #fff !important;
      }

      &.btn-sm {
        font-weight: 500;
        padding: 7px 16px !important;
      }
    }
  }

  &-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  &-block {
    display: block;

    .card-order-section {
      margin-top: 20px;
      border-top: 1px solid rgba($color: $black1, $alpha: 0.15);
      border-bottom: 1px solid rgba($color: $black1, $alpha: 0.15);
      padding: 10px 0;

      ul {
        margin: -8px;
        color: $black1;

        li {
          display: inline-block;
          margin: 0 15px;
          font-size: 18px;
          position: relative;
          color: $theme-body-font-color;

          &::before {
            content: "/";
            position: absolute;
            top: 0;
            right: -15px;
            width: 0;
            height: 100%;
          }

          &:first-child {
            margin-left: 15px;
          }

          &:last-child {
            margin-right: 0;

            &::before {
              content: none;
            }
          }
        }
      }
    }
  }

  h5 {
    font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
    letter-spacing: 0.03em;
    position: relative;
  }

  &.option-title {
    display: flex;
    align-items: center;

    h5 {
      margin-right: auto;
      position: relative;
    }

    .add-button {
      font-size: 14px;
      font-weight: 600;

      > div {
        display: flex;
        align-items: center;
        font-weight: 600;
      }
    }

    .right-options {
      ul {
        display: flex;
        align-items: center;
        gap: 15px;

        li {
          a {
            display: flex;
            align-items: center;
            gap: 10px;
          }
        }
      }
    }
  }

  &.media-title {
    flex-wrap: wrap;
    gap: 15px;

    .left-content {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;

      .selected-options {
        ul {
          margin-left: 0;
          padding: 7px 15px;
        }
      }
    }
  }

  .action-dropdown {
    .dropdown-toggle,
    .btn {
      border: 1px solid #efefef !important;
      background-color: #f8f8f8 !important;
      color: #222 !important;

      body.dark-only & {
        background-color: #404040 !important;
        border-color: #404040 !important;
        color: rgba(255, 255, 255, 0.6) !important;
      }
    }

    .dropdown-menu {
      border: 1px solid #eee;
      box-shadow: unset;
      border-radius: 0;

      .dropdown-item {
        border: none;

        + .dropdown-item {
          border-top: 1px solid #eee;
        }
      }
    }
  }
}

.rdrMonth {
  @media (max-width: 1300px) {
    width: 21.667em;
  }
}

/* Card css */
.card {
  margin-bottom: $card-margin-bottom;
  border: none;
  letter-spacing: 0.5px;
  border-radius: 0;
  padding: 25px;

  @media (max-width: 576px) {
    padding: 15px;
  }

  &.card-hover {
    transition: all 0.3s ease;

    &:hover {
      box-shadow: 0 0 25px rgba($black1, 0.1);
      transition: all 0.4s ease;
      transform: translateY(-5px);
    }
  }

  &.card-tiles {
    border: 1px solid #ddd;
  }

  .card-header {
    background-color: $card-header-bg-color;
    padding: 0;
    border-bottom: $card-border-color;
    position: relative;
    margin-bottom: 16px;

    &--2 {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 40px;
    }

    &-1 {
      margin: 40px 0 20px;
      color: $dark-card-background;

      h5 {
        font-size: 20px;
        font-weight: 700;
      }
    }

    &-2 {
      color: $dark-card-background;
      margin-bottom: 30px;

      h5 {
        font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
        font-weight: 700;
      }
    }

    &-block {
      display: block;
      padding: 40px;

      .card-order-section {
        margin-top: 20px;
        border-top: 1px solid rgba($color: $black1, $alpha: 0.15);
        border-bottom: 1px solid rgba($color: $black1, $alpha: 0.15);
        padding: 10px 0;

        ul {
          margin: -8px;

          li {
            display: inline-block;
            margin: 8px;
            position: relative;

            &::before {
              content: "/";
              position: absolute;
              top: 0;
              right: -10px;
              width: 0;
              height: 100%;
            }

            &:last-child {
              &::before {
                content: none;
              }
            }
          }
        }
      }
    }

    &-top {
      padding: 16px;
    }

    &.card-no-border {
      border-bottom: none !important;
    }

    h5 {
      font-size: 30px;
      font-weight: 700;

      &:not(.mb-0),
      &:not(.m-0) {
        margin-bottom: 0;
        text-transform: $card-header-font-transform;
      }
    }

    > span {
      font-size: $card-header-span-size;
      color: $card-header-span-color;
      margin-top: 5px;
      display: block;
      letter-spacing: 1px;
    }

    .card-header-right {
      border-radius: 0 0 0 7px;
      right: 35px;
      top: 33px;
      display: inline-block;
      padding: 8px 0;
      position: absolute;
      background-color: $white;
      z-index: 1;

      .card-option {
        text-align: right;
        width: 35px;
        height: 20px;
        overflow: hidden;
        transition: 0.3s ease-in-out;

        li {
          display: inline-block;

          &:first-child {
            i {
              transition: 1s;
              font-size: 16px;
              color: var(--theme-color);
            }
          }
        }
      }

      i {
        margin: 0 5px;
        cursor: pointer;
        color: $dark-color;
        line-height: 20px;
      }
    }

    .best-selling-box {
      display: flex;
      align-items: center;

      span {
        margin-right: 6px;
        font-weight: 700;
        color: $title-color;

        [dir="rtl"] & {
          margin-right: unset;
          margin-left: 6px;
        }
      }

      .dropdown {
        .dropdown-toggle {
          color: $content-color;
        }
      }
    }
  }

  .card-body {
    padding: 0;
    color: var(--bs-card-color);
    background-color: $card-body-bg-color;

    &-2 {
      padding: 16px;
    }

    p {
      &:last-child {
        margin-bottom: 0;
      }
    }
  }

  .sub-title {
    border-bottom: 1px solid rgba($black, 0.1);
    padding-bottom: 5px;
    margin-bottom: 8px;
    font-size: 18px;
  }

  .card-footer {
    background-color: $card-footer-bg-color;
    border-top: $card-border-color;
    padding: $card-padding;
    border-bottom-left-radius: $card-border-radius;
    border-bottom-right-radius: $card-border-radius;
  }

  &.card-load {
    .card-loader {
      position: absolute;
      top: 0;
      left: 0;
      @include pseudowh;
      background-color: rgba($white, 0.7);
      z-index: 8;
      @include flex_common;

      i {
        margin: 0 auto;
        color: var(--theme-color);
        font-size: 20px;
      }
    }
  }

  &.full-card {
    position: fixed;
    top: 0;
    z-index: 99999;
    box-shadow: none;
    right: 0;
    border-radius: 0;
    border: 1px solid $light-semi-gray;
    width: calc(100vw - 12px);
    height: 100vh;

    .card-body {
      overflow: auto;
    }
  }
}

.card-absolute {
  margin-top: 20px;

  .card-header {
    position: absolute;
    top: -20px;
    left: 15px;
    border-radius: 0.25rem;
    padding: 10px 15px;

    h5 {
      font-size: 17px;
    }
  }

  .card-body {
    margin-top: 10px;
  }
}

.card-header {
  .border-tab {
    margin-bottom: -13px;
  }
}

.custom-card {
  overflow: hidden;
  padding: 30px;

  .card-header {
    padding: 0;

    img {
      border-radius: 50%;
      margin-top: -100px;
      transform: scale(1.5);
    }
  }

  .card-profile {
    text-align: center;

    img {
      height: 110px;
      padding: 7px;
      background-color: $white;
      z-index: 1;
      position: relative;
    }
  }

  .card-social {
    text-align: center;

    li {
      display: inline-block;
      padding: 15px 0;

      &:last-child {
        a {
          margin-right: 0;
        }
      }

      a {
        padding: 0;
        margin-right: 15px;
        color: rgb(188, 198, 222);
        font-size: 16px;
        transition: all 0.3s ease;

        &:hover {
          color: var(--theme-color);
          transition: all 0.3s ease;
        }
      }
    }
  }

  .profile-details {
    h6 {
      margin-bottom: 30px;
      margin-top: 10px;
      color: $theme-body-sub-title-color;
      font-size: 14px;
    }
  }

  .card-footer {
    padding: 0;

    > div {
      + div {
        border-left: 1px solid $light-semi-gray;
      }

      padding: 15px;
      text-align: center;

      h3 {
        margin-bottom: 0;
        font-size: 24px;
      }

      h6 {
        font-size: 14px;
        color: $theme-body-sub-title-color;
      }

      h5 {
        font-size: 16px;
        margin-bottom: 0;
      }

      i {
        font-size: 24px;
        display: inline-block;
        margin-bottom: 15px;
      }

      .m-b-card {
        margin-bottom: 10px;
      }
    }
  }
}

.card {
  .pagination-box {
    margin: 0 auto;
    padding-bottom: 30px;
    padding-top: 5px;
  }
}

.theme-card {
  h5 {
    font-size: 18px;
    margin-top: 20px !important;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .myCheckbox1 {
    cursor: pointer;
    box-shadow: 0 0 8px #ddd;

    &.active-theme {
      border: 2px solid var(--theme-color);

      > div {
        position: relative;

        h4 {
          position: absolute;
          top: 0;
          right: 0;
          background-color: var(--theme-color);
          color: $white;
          font-size: 14px;
          padding: 3px 7px;
          text-transform: capitalize;
          font-weight: 600;
        }
      }
    }
  }
}

.vertical-tabs {
  .nav-pills {
    border: none;
    position: sticky;
    top: 100px;
    background-color: #f8f8f8;
    padding: 16px;

    [dir="rtl"] & {
      padding: 16px;
    }

    @media (max-width: 991px) {
      display: flex;
      flex-wrap: unset;
      position: relative;
      top: 0;
      flex-direction: unset !important;
      gap: 15px;
      margin-bottom: 11px;
      padding: calc(8px + (16 - 8) * ((100vw - 320px) / (992 - 320)));
      overflow: auto;
    }

    .nav-item {
      display: block;
      width: 100%;
      margin: 0;
      position: relative;
      background-color: $input-bg-color;
      margin-bottom: 6px;

      @media (max-width: 991px) {
        margin-bottom: 0;
        display: inline-block;
        width: max-content;
        margin: 0;
      }

      &.is-invalid {
        border-color: transparent;
        border: none !important;
        padding-right: 0 !important;
        background-image: unset;

        @media (max-width: 991px) {
          .nav-link {
            padding-right: 40px !important;
          }
        }

        .nav-link {
          &:before {
            @include pos;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='15' height='15' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
            background-position: right 0.75rem center, center right 2.25rem !important;
            background-size: 18px !important;
            background-repeat: no-repeat;
            border-color: #dc354500 !important;
            z-index: 1;
            width: 30px;
            height: 30px;
            right: 0;
            @include center(vertical);
          }

          &.active {
            &:before {
              filter: invert(1) brightness(100);
            }
          }
        }
      }

      .nav-link {
        width: 100%;
        text-align: left;
        border-radius: 0;
        padding: 12px 25px;
        display: flex;
        align-items: center;
        gap: 13px;
        color: #212529;
        font-size: calc(14px + 2 * (100vw - 320px) / 1600);
        font-weight: 500;
        text-transform: capitalize;

        @media (max-width: 991px) {
          padding: calc(8px + (10 - 8) * ((100vw - 320px) / (1920 - 320))) calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
          gap: 8px;
          white-space: nowrap;
        }

        &:after {
          display: none;
        }

        &.active {
          background: rgba(236, 137, 81, 0.129);
          border-radius: 0;
          border: unset;
          font-weight: 600;
          color: var(--theme-color);

          svg {
            stroke-width: 1px;
          }

          &::before {
            @include pos;
            left: 4px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--theme-color);
            width: 3px;
            height: calc(100% - 16px);
            border-radius: 100px;

            [dir="rtl"] & {
              left: unset;
              right: 4px;
            }
          }
        }
      }
    }
  }

  .tab-content {
    border-left: 1px dashed #ddd;
    padding-left: 24px;
    height: 100%;

    [dir="rtl"] & {
      padding-left: 0;
      padding-right: 24px;
      border-left: none;
      border-right: 1px dashed #ddd;

      @media (max-width: 991px) {
        border-right: none;
        padding-right: 0;
      }
    }

    @media (max-width: 991px) {
      border-top: 1px dashed #ddd;
      padding-top: 20px;
      border-left: none;
      padding-left: 0;
    }

    .tab-pane {
      .input-error {
        > .row {
          > div {
            &:first-child {
              @media (min-width: 576px) {
                width: 25%;
              }
            }

            &:last-child {
              @media (min-width: 576px) {
                width: 75%;
              }
            }
          }
        }

        .custom-select-box {
          .form-control {
            width: 100%;
            max-width: unset;
          }
        }
      }
    }
  }
}

.apexcharts-tooltip {
  &.apexcharts-theme-light {
    body[class="dark-only"] {
      background-color: #0b141d;
      border-color: $dark-card-border;
    }

    .apexcharts-tooltip-series-group {
      .apexcharts-tooltip-text {
        .apexcharts-tooltip-y-group {
          body.dark-only & {
            color: #fff;
          }
        }

        .apexcharts-tooltip-goals-group,
        .apexcharts-tooltip-z-group {
          display: none;
        }
      }
    }
  }
}

.apexcharts-tooltip {
  &.apexcharts-theme-light {
    body.dark-only & {
      background-color: #0b141d;
      border-color: $dark-card-border;
    }
  }
}

.apexcharts-xaxistooltip {
  &.apexcharts-theme-light {
    body.dark-only & {
      background-color: #0b141d;
      border-color: $dark-card-border;
      color: #ddd;

      &::after {
        border-bottom-color: #0b141d;
      }

      &::before {
        border-bottom-color: $dark-card-border;
      }
    }
  }
}

.withdraw-card {
  height: calc(100% - 30px);
  display: flex;
  justify-content: center;

  .withdraw-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;

    .plus-icon {
      font-size: 20px;
      line-height: 1;
    }
  }
}

.rdrCalendarWrapper {
  width: 100%;
  background-color: $white;

  .rdrDateDisplay {
    margin: 16px;
  }

  .rdrDateDisplayWrapper {
    position: relative;
    background-color: transparent;

    &::before {
      @include pos;
      top: 0;
      left: 0;
      @include pseudowh;
      background-color: transparent;
      opacity: 1;
      border-bottom: 1px solid #eff2f7;

      body.dark-only & {
        border-color: #404040 !important;
      }
    }

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

  select {
    border-radius: 0;
    background-color: #f9f9f6;
    border: 1px solid #eee;
    text-align: unset;
    font-size: 14px;
    font-weight: 500;
  }

  .rdrSelected,
  .rdrInRange,
  .rdrStartEdge,
  .rdrEndEdge {
    color: var(--theme-color) !important;
  }

  .rdrEndEdge,
  .rdrStartEdge {
    border-radius: 0;
  }

  .rdrInRange {
    background: rgba(255, 171, 0, 0.16);

    body.dark-only & {
      background: #1c2128;
    }
  }

  .rdrDayStartOfMonth {
    .rdrInRange {
      background: var(--theme-color);
    }
  }

  .rdrNextPrevButton {
    background-color: #f9f9f6;
  }

  .rdrDay {
    > span {
      &:first-child {
        color: var(--theme-color) !important;
      }
    }
  }

  .rdrDayToday {
    .rdrDayNumber {
      span {
        &::after {
          background-color: var(--theme-color);
        }
      }
    }
  }
}
