@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700&display=swap");

:root {
  /* font */
  --font-family: "Poppins", sans-serif;
}

*,
:before,
:after{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
}

/* ------------------------------------------ header ------------------------------------ */

.dashbord-header {
  z-index: 9999;
  position: fixed;
  height: 5rem;
  width: 100%;
  top: 0;
  /* background-image: linear-gradient(147deg, #47a8a2 5%, #098156 74%); */
  /* background-color: #053f2a; */
  background-color: white;
  color: #000;
}

.dashbord-header .dashbord-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 0rem;
  padding-bottom: 0rem;
  max-width: 92%;
  margin: 0 auto;
  position: initial;
  height: 100%;
  width: 100%;
}

.dashbord-container {
  max-width: 100%;
  width: 100%;
  display: flex;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.navbar-brand-logo .dashbord-logo {
  height: auto;
  width: 100%;
}

.hamburger-menu {
  display: none;
}

/* --------- menu -------- */

.hamburger-menu {
  width: 22px;
  cursor: pointer;
  line-height: 8px;
  z-index: 999;
  height: 32px;
}

.hamburger-menu span {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.5s;
}

.hamburger-menu.active-icon span {
  margin-top: 15px;
  position: absolute;
  width: 32px;
}

.hamburger-menu.active-icon span:first-child {
  transform: rotate(-135deg);
}

.hamburger-menu.active-icon span:nth-child(2) {
  transform: rotate(135deg);
}

.hamburger-menu.active-icon span:last-child {
  margin-top: 30px;
  width: 0px;
  display: none;
}

.hamburger-menu.active-icon span {
  background: #ffffff;
}

/* ------------- end ----  */

.dashbord-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashbord-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}

.dashbord-item-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashbord-drop-title {
  color: rgb(8, 8, 8);
  /* color: rgb(255, 255, 255); */
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-family);
  margin: 0 8px;
  letter-spacing: 0.2px;
}

.dashbord-dropdown {
  position: relative;
  display: inline-block;
  margin: 0 8px;
}

/* Style for the dropdown button */
.dashbord-dropdown-btn {
  background-color: #f1f1f1;
  border: none;
  color: rgb(6, 43, 71);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-family);
  padding: 10px 20px;
  cursor: pointer;
  min-width: 180px;
  line-height: 20px;
  text-align: start;
  position: relative;
  border-radius: 1px;
}

.dashbord-dropdown-btn:after {
  margin-left: 0.25em;
  font-size: 1.2em;
  vertical-align: middle;
  font-family: "FontAwesome";
  content: "\f078";
  position: absolute;
  right: 6px;
  transform: rotate(0deg);
}

/* Style for the dropdown content */
.dashbord-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dashbord-dropdown-content.show {
  display: block;
}

/* Style for dropdown links */
.dashbord-dropdown-content a {
  height: 100%;
  width: 100%;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dashbord-content-flex {
  display: flex;
  align-items: center;
}

.dashbord-drop-icon {
  margin-right: 10px;
}

.dashbord-drop-icon i {
  font-size: 13px;
  border-radius: 50%;
}

.hightlight-button.not-selectable .dashbord-drop-icon i {
  color: #062b4770;
}

.hightlight-button.active .dashbord-drop-icon i {
  background-color: rgb(6, 43, 71);
}

.dashbord-drop-name {
  color: rgb(6, 43, 71);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family);
}

.dashbord-dropdown-content a:hover {
  background-color: #f1f1f1;
  transition: all 0.3s ease;
}

.dashbord-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashbord-btn {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 6px 20px 6px;
  font-family: var(--font-family);
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  color: black;
  /* color: rgb(255 255 255); */
  border: 2px solid rgb(255 255 255);
  background-color: transparent;
  border-radius: 7px;
  text-decoration: none;
  transform: translateZ(0px);
  transition: all 0.3s ease 0s;
  font-size: 16px;
  line-height: 29px;
  text-transform: initial !important;
  border-color: #000;
}

.dashbord-btn:hover {
  background-color: rgb(238, 247, 255);
  color: rgb(6, 43, 71);
  border-color: rgb(238, 247, 255);
}

/* ---------------------- main dashbord ---------------------- */

.dashbord {
  top: 5rem;
  position: relative;
}

.dashbord-diffrent {
  top: 0;
  padding-top: 5rem;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.dashbord-filter {
  background-color: #fff;
  width: 25%;
  height: 100%;
}

.dashbord-catagery {
  padding: 10px;
}

.border-bottom {
  border-bottom: 1px solid rgba(112, 107, 104, 0.2);
}

.dashbord-title {
  color: rgb(6, 43, 71);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-family);
  margin: 0 8px;
  letter-spacing: 0.4px;
  padding: 20px 15px;
  margin: 0;
}

.catagery-list {
  padding: 15px;
  margin: 0;
  margin-top: -10px;
}

.catagery-small-title {
  color: rgb(6, 43, 71);
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-family);
  margin: 0 8px;
  letter-spacing: 0.4px;
  margin: 0;
  margin-bottom: 15px;
  margin-top: 10px;
}
.catagery-list-wrape-compare {
  display: grid;
  margin: 0px auto;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 1rem;
  margin-left: px;
}

.category-list p {
  color: rgb(6, 43, 71);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family);
  margin: 0 8px;
  letter-spacing: 0.4px;
  margin: 0;
  margin-bottom: 15px;
}
.catagery-list-wrape-btn {
  display: grid;
  margin: 0px auto;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 1rem;
  margin-top: 15px;
}
.catagery-list-wrape-btn p {
  font-weight: 800;
}
.category-list {
  margin-left: 15px;
  margin-top: 10px;
}

.catagery-list-wrape-compare input {
  padding: 8px 10px;
  color: rgb(6, 43, 71);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-family);
  margin: 0 8px;
  letter-spacing: 0.4px;
  margin: 0;
  background: #f1f1f1;
  border: 1px solid #dddddd;
  border-radius: 5px;
}

.catagery-list label {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family);
  margin: 0 3px;
  letter-spacing: 0.4px;
}

.catagery-list-wrape {
  display: grid;
  margin: 0px auto;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 1rem;
}

.catagery-list input {
  cursor: pointer;
}

.catagery-list div {
  margin-top: 3px;
}

.catagery-dropdown {
  position: relative;
  display: inline-block;
}

/* Style for the dropdown button */
.catagery-dropdown-btn {
  background-color: #f1f1f1;
  border: none;
  color: rgb(6, 43, 71);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-family);
  padding: 10px 20px;
  cursor: pointer;
  min-width: 210px;
  line-height: 20px;
  text-align: start;
  position: relative;
  border-radius: 1px;
}

.catagery-dropdown-btn:after {
  margin-left: 0.25em;
  font-size: 1.2em;
  vertical-align: middle;
  font-family: "FontAwesome";
  content: "\f078";
  position: absolute;
  right: 6px;
  transform: rotate(0deg);
}

/* Style for the dropdown content */
.catagery-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  max-height: 370px;
  overflow-x: auto;
}

.catagery-dropdown-content.show {
  display: block;
}

/* Style for dropdown links */
.catagery-dropdown-content a {
  color: rgb(6, 43, 71);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-family);
  text-decoration: none;
  display: block;
  padding: 6px 12px;
}

.catagery-dropdown-content a:hover {
  background-color: #e8f1ec;
}

.catagery-dropdown-content::-webkit-scrollbar-track {
  background: #d7dfff;
  border-radius: 15px;
}

.catagery-dropdown-content::-webkit-scrollbar {
  width: 4px;
}

.catagery-dropdown-content::-webkit-scrollbar-thumb {
  background: #010e2b !important;
  border-radius: 15px;
}

.dashbord-wrapper {
  padding: 10px;
  width: 75%;
  border-left: 1px solid rgba(112, 107, 104, 0.2);
}

.wrapper-title {
  display: block;
  margin-bottom: 10px;
}

.wrapper-title h1 {
  color: rgb(6, 43, 71);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-family);
  letter-spacing: 0.4px;
  padding: 20px 15px;
  margin: 0;
}

.wrapper-title p {
  color: rgb(6, 43, 71);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-family);
  letter-spacing: 0.4px;
  padding: 20px 15px;
  padding-top: 0;
}

.wrapper-title h1 span {
  color: #780404;
}

.dashbordchart-container {
  display: flex;
  flex-wrap: wrap;
}

.dashbord-col-1 {
  width: 70%;
}

.dashbord-col-diffrent {
  width: 55%;
}

.dashbord-col-2 {
  width: 30%;
}

.pricing-status {
  width: 100%;
}

.pricing-right-table {
  width: 100%;
}

.pricing-right-table {
  border: 1px solid rgb(181 181 181 / 50%);
  border-radius: 6px;
}

.pricing-title {
  background-color: #fbfcfd;
  border-bottom: 1px solid #dbdcde;
}

.pricing-left-part {
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.pricing-right-part {
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgb(6, 43, 71);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family);
  letter-spacing: 0.4px;
  margin: 0;
}

.text-right {
  text-align: right;
}

.text-left {
  color: rgb(6, 43, 71);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family);
  letter-spacing: 0.4px;
  margin: 0;
}

.pricing-odd {
  background-color: #fff;
}

.pricing-even {
  background-color: #fbfbfb;
}

span.pricing-info {
  border: 1px solid #4d4f5c;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  float: right;
}

.dashborddata-container {
  margin-top: 20px;
}

.state-data {
  max-height: 490px;
  overflow-x: auto;
}

.state-data::-webkit-scrollbar-track {
  background: #d7dfff;
  border-radius: 15px;
}

.state-data::-webkit-scrollbar {
  width: 4px;
}

.state-data::-webkit-scrollbar-thumb {
  background: #010e2b !important;
  border-radius: 15px;
}

.full-table {
  width: 100%;
  border: 1px solid rgba(206, 207, 210, 0.5);
}

table {
  border-collapse: collapse;
}

.state-flex {
  background-color: #fbfcfd;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  font-family: var(--font-family);
}

.w-40 {
  width: 40%;
}

.w-30 {
  width: 30%;
}

.pd-left {
  padding-left: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.pd-center {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pd-right {
  padding-right: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.pd-diffrent {
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.text-center {
  text-align: center;
}

.state-flex td {
  color: rgb(6, 43, 71);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-family);
  letter-spacing: 0.4px;
  margin: 0;
}

.full-table tr.odd {
  background-color: #fff;
}

.full-table tr.even {
  background-color: #fafafa;
}

.state-title {
  padding-left: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgb(6, 43, 71);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family);
  text-decoration: none;
}

.state-title-diffrent {
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgb(6, 43, 71);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family);
  text-decoration: none;
}

.state-price {
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgb(6, 43, 71);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family);
  text-decoration: none;
}

.state-tag {
  padding-right: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgb(6, 43, 71);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family);
  text-decoration: none;
}

.green {
  color: #0a7e19;
}

.red {
  color: #b90e0e;
}

/* -------- footer ---------- */

.dashbord-footer {
  background-color: #062b47;
  padding: 20px 30px;
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.new-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.new-footer-social-icon i {
  color: #fff;
  font-size: 16px;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family);
  text-decoration: none;
  margin: 0 10px;
}

.copyright span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family);
  text-decoration: none;
}

table {
  border: 1px solid black;
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border: 1px solid #ddd;
  text-align: left;
  padding: 8px;
  font-family: var(--font-family);
}

th {
  background-color: #062b47;
  color: #fff;
}

b {
  font-weight: bold;
  font-family: var(--font-family);
}

.stats-table {
  float: right;
  margin-top: 10px;
  margin-left: 10px;
  width: 30%;
  /* Adjust the width percentage as needed */
  margin-bottom: 20px;
}

/* CSS styles for the .usa-price class */
.usa-price {
  color: blue;
  font-size: 1.2em;
}

.catagery-list select {
  background-color: #f1f1f1;
  width: 100%;
  padding: 8px 20px;
  border: none;
  color: rgb(6, 43, 71);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  text-align: start;
  position: relative;
  border-radius: 3px;
}

/* ------------------------------------------- responsive ------------------------------------------ */

@media screen and (max-width: 1600px) {
  .dashbord-filter {
    width: 30%;
  }

  .dashbord-wrapper {
    width: 70%;
  }
}

@media screen and (max-width: 1200px) {
  .dashbord-filter {
    width: 35%;
  }

  .dashbord-wrapper {
    width: 65%;
  }

  .dashbord-col-1 {
    width: 50%;
  }

  .dashbord-col-2 {
    width: 50%;
  }

  .dashbord-dropdown-btn {
    padding: 8px 14px;
    min-width: 160px;
    line-height: 20px;
  }

  .dashbord-btn {
    padding: 6px 12px 6px;
    font-size: 15px;
    line-height: 24px;
  }
}

@media screen and (max-width: 992px) {
  .dashbord-header {
    position: sticky;
    top: 0;
    right: 0;
  }

  .dashbord {
    top: 0;
  }

  .dashbord-menu.active {
    width: 60%;
  }

  .dashbord-menu {
    top: 0;
    position: absolute;
    text-align: start;
    background: #fff;
    overflow: hidden;
    display: none;
  }

  .dashbord-menu.active {
    right: 0;
    height: 100vh;
    overflow-y: auto;
    display: block;
    padding: 15px;
    background-color: #062b47;
    box-shadow: 6px 6px 22px rgba(42, 31, 63, 0.1);
    top: 0;
  }

  .dashbord-nav {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    margin-top: 5rem;
    position: relative;
    margin-right: 0;
  }

  .dashbord-items {
    margin-bottom: 15px;
    width: 100%;
  }

  .dashbord-item-flex {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }

  .dashbord-nav {
    height: auto;
  }

  .dashbord-drop-title {
    margin-bottom: 10px;
  }

  .dashbord-dropdown {
    width: 100%;
  }

  .dashbord-dropdown-btn {
    width: 100%;
  }

  .dashbord-button {
    justify-content: start;
    margin: 10px;
  }

  .hamburger-menu {
    display: block;
  }

  .d-flex {
    flex-direction: column;
  }

  .dashbord-filter {
    width: 100%;
  }

  .dashbord-wrapper {
    width: 100%;
  }

  .dashbordchart-container {
    flex-direction: column;
  }

  .dashbord-col-1,
  .dashbord-col-2 {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .dashbord-menu.active {
    width: 100%;
  }

  .footer-flex {
    flex-direction: column;
  }

  .new-footer-social {
    margin-bottom: 10px;
  }

  .copyright {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 400px) {
  .dashbord-catagery {
    padding: 0px;
  }

  .dashbord-title {
    padding: 8px 15px;
  }

  .catagery-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 15px;
    flex-wrap: wrap;
  }

  .catagery-dropdown-btn {
    font-size: 14px;
  }

  .wrapper-title h1 {
    font-size: 14px;
    padding: 8px 10px;
  }

  .text-left,
  .text-right {
    font-size: 12px;
  }

  .pricing-left-part {
    padding-left: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .pricing-right-part {
    padding-right: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  span.pricing-info {
    width: 20px;
    height: 20px;
  }

  .pd-left {
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .pd-center {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .pd-right {
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .state-flex td {
    font-size: 12px;
  }

  .state-title {
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 12px;
  }

  .state-price {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .state-tag {
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 12px;
  }

  .state-data {
    max-height: 345px;
    overflow-x: auto;
  }

  .footer-contact {
    flex-direction: column;
  }

  .footer-contact a:nth-child(1) {
    margin-bottom: 10px;
  }

  .catagery-list select {
    min-width: 210px;
    width: auto;
  }
}

.dashbord-col-1 .chart {
  width: 100% !important;
  overflow: hidden;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  backdrop-filter: saturate(100%) blur(6px);
}

.dashbord-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  z-index: 2;
  padding: 40px;
  border-radius: 15px;
  /* background: linear-gradient(90deg, #062b47 0%, hsla(221, 45%, 73%, 1) 100%); */
  background: linear-gradient(
    90deg,
    #084568bf 0%,
    hsl(202.67deg 40.43% 53.74% / 70%) 100%
  );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
}

.popup-inner {
  text-align: center;
}

.form {
  max-width: 400px;
  margin: 0 auto;
}

.form-control {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit {
  display: inline-block;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.2px;
  margin-right: 10px;
  border: 2px solid #062b47;
  border-radius: 5px;
  padding: 10px 20px;
  background-color: #062b47;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
}

.submit:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.popup-content input {
  outline: none;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: none;
  margin-bottom: 20px;
  color: #062b47 !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
  font-family: var(--font-family);
}

.popup-content textarea {
  outline: none;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: none;
  margin-bottom: 20px;
  color: #062b47 !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
  font-family: var(--font-family);
}

.popup-content input::placeholder {
  color: #062b47;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.popup-content textarea::placeholder {
  color: #062b47;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.status-red {
  color: #ff0000;
}

.status-grn {
  color: #008000;
}

@media screen and (max-width: 768px) {
  .dashbord-popup {
    padding: 20px;
    width: 90%;
  }
}

/* ================================== date ============================ */

.catagery-list input {
  padding: 8px 10px;
  color: rgb(6, 43, 71);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-family);
  margin: 0 8px;
  letter-spacing: 0.4px;
  margin: 0;
  background: #f1f1f1;
  border: 1px solid #dddddd;
  border-radius: 5px;
}

.diffrent-width-flex {
  width: 100%;
}

.diffrent-width {
  width: 25%;
}

.diffrent-width-header {
  width: 100%;
}

.diffrent-width-header .state-title-diffrent {
  width: 25%;
}

/* ===================  comaprison date ====================================== */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-left: -122px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 14px;
  left: 1.5px;
  bottom: 3.5px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
  height: 19px;
  width: 45px;
  margin-left: 15px;
}

.slider.round:before {
  border-radius: 50%;
}
.chart-space {
  width: 100%;
}

.border-danger {
  border-color: rgb(206, 31, 31) !important;
}

.text-danger {
  color: rgb(206, 31, 31) !important;
}

.please-wait-message {
  color: #26ebdf;
  font-size: 35px;
  text-align: left;
  padding-top: 17px;
}

#chart-container,
#chart-container_compare {
  margin-top: 20px;
}


@media (max-width: 400px) {
    .new-price-track-catagery-list {
        display: block;
        padding: 10px 5px;
    }
    .dashbord-diffrent {
        padding-top: 2rem;
    }
    .catagery-list div {
        margin-top: 10px;
        display: flex;
        align-items: center;
        gap: 2px;
    }
    .catagery-list label {
        font-size: 12px;
    }
    .category-list p {
        margin-bottom: 0;
    }
    .slider:before {
        bottom: 2.5px;
    }
    .slider.round {
        border-radius: 34px;
        height: 19px;
        width: 45px;
        margin-left: 15px;
    }
    .switch {
        position: relative;
        display: inline-block;
        width: 45px;
        height: 19px;
        margin-left: 0;
    }
    .catagery-list-wrape-btn {
        display: flex;
        margin: 0px auto;
        gap: 1rem;
        align-items: center;
    }
    .slider.round {
        margin-left: 0;
    }
}

 /* ----------grocery-price-tracker-us------- */
  

 .chart-viewing {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: rgb(6, 43, 71);
  display: block;

}

.last-second-content h4 {
  padding-bottom: 7px;
}

.chart-viewing-ul{
  margin: 0;
  padding-left: 1rem;
}

.chart-viewing-para {
  margin: 0;
  padding-bottom: 20px;
  font-size: 16px;
  text-align: start;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.last-second-content {
 margin-left: 50px;
 padding-bottom: 40px;
}


.last-second-content h4 {
  font-family: var(--font-family) !important;
}


.hear-from-you {
  /* width: 80rem; */
  width: 100%;
  /* max-width: 1350px; */
  padding: 80px 65px;
  background-position: 50%;
  background-size: cover;
  background-color: transparent;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/grocery-price-tracker-us/banner.webp);
  margin-left: 50px;
}

.title-hear-from-you h2 {
  font-size: 42px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.3px;
  color: var(--bs-white);
  text-align: center;
  padding-bottom: 10px !important;
  letter-spacing: 0.5px !important;
  text-transform: initial !important;
}

.last-content-button {
  display: flex;
  gap: 20px;
  justify-content: center;

}

.last-content-button button {
  text-decoration: none;
  background: rgb(8, 147, 189);
  border-radius: 10px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  position: relative;
  z-index: 30;
  box-shadow: rgb(239 102 80 / 0%) -20px 30px 45px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  overflow: hidden;
  border: none !important;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.02em;
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 30;
  margin-bottom: 0;
}

.last-content-button button a {
  color: white;
}

.last-second-content li {
  list-style: circle;
  color: rgb(78, 95, 119);
  font-family: var(
) !important;
  font-size: 16px;
  text-align: start;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

@media screen and (min-width: 320px ) and (max-width: 600px) {
  .last-content-button {
      flex-direction: column;
width: 200px;
margin: auto;

  }

  .hear-from-you {
      padding: 80px 19px;
      margin-left: 0;
  }

  .last-second-content {
      margin-left: 0;
  }


}

@media screen and (max-width: 770px ) {
  .last-content-button {
      flex-direction: column;
      width: 200px;
margin: auto;
  }
}

.title-hear-from-you p{
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* -------- */

.layout-page-footer {
  background-color: #062b47;
  /* margin-top: 15px; */
  padding-inline: 12px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.flex-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer-grow-2 .v-card-contact-item {
  padding: 0rem;
  display: flex;
  /* align-items: center; */
  column-gap: 40px;
  flex-wrap: wrap;
}

.footer-grow-2 .v-card-contact-item .v-conect-flex {
  margin-top: 0;
}

.footer-grow-3 p {
  color: #fff;
  font-family: var(--bs-font-sans);
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: 1.5rem;
  text-transform: none;
  margin-bottom: 0;
}

.v-card-contact-item {
  padding: 1rem;
}

.v-conect-flex {
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 10px;
  margin-top: 19px;
}

.v-conect-icon img {
  width: 30px;
  height: auto;
}

.v-conect-link a {
  color: rgb(255 255 255 / 87%);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all .4s;
  font-family: var(--bs-font-sans);
}

.v-conect-link a:hover {
  color: rgb(159 159 159) !important;
}

.new-blog-inside-social {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 0 !important;
  flex-wrap: wrap;
}

.social-icon-inside {
  display: flex;
  position: relative;
  overflow: hidden;
  width: var(--link-size);
  height: var(--link-size);
  margin: 8px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: var(--trans-property);
}

.social-icon-inside i {
  margin: auto;
  font-size: 24px;
  color: #67798e;
  z-index: 1;
  transition: var(--trans-property);
}

.social-icon-inside:after {
  content: "";
  width: var(--link-size);
  height: var(--link-size);
  position: absolute;
  transform: translate(0, var(--link-size));
  border-radius: 50%;
  transition: var(--trans-property);
}

.footer-grow-1 .social-icon-inside {
  width: 38px;
  height: 38px;
}

.footer-grow-1 .social-icon-inside i {
  font-size: 15px;
}


/* Header Blur CSS */

header.dashbord-header.scrolled {
        display: inline-flex;
    background: rgba(71, 168, 162, 0.2); /* translucent color */
    backdrop-filter: blur(8px); /* glassy blur */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding: 12px 20px;
    border-radius: 7px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    /* text-align: center; */
    letter-spacing: 1px;
    font-family: var(--font-family) !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* header.dashbord-header.scrolled a.dashbord-btn {
    color: black;
    border-color: black;
}

header.dashbord-header.scrolled .dashbord-drop-title {
    color: black;
} */