/* reboot bootstrap */
.dropdown-toggle::after {
  border: 1px solid transparent;
  width: 8px;
  height: 8px;
  border-color: transparent transparent var(--text-gray) var(--text-gray);
  rotate: -45deg;
}

.btn:focus,
.btn:active,
.form-control:focus,
.form-control:active,
.form-select:focus,
.form-select:active,
.form-check:focus,
.form-check:active,
button:focus,
button:active,
input:focus,
input:active,
text-area:focus,
text-area:active,
select:focus,
select:active {
  box-shadow: none;
  border-color: var(--border-gray);
  outline: none;
}

/* root document */
:root {
  /* colors */
  --white: #ffffff;
  --black: #000000;
  --dark: #222222;
  --primary: #1e63b8;
  --text-gray: #6e6e6e;
  --text-lime: #7b9949;
  --text-lime-deep: #80ae35;
  --text-orange-red: #fa5457;
  --text-bluish-dark: #acbfd9;
  --bg-lime: #ecf1e7;
  --bg-bluish-dark: #516177;
  --bg-mostly-white-100: #f7f8fa;
  --bg-mostly-white-200: #f5f7fb;
  --border-lime: #d7ecc2;
  --border-gray: #e2e0f4;
  --border-bluish-dark: #8799b1;
  --border-dark: #dcdcdc;
  --placeholder-gray: #b7b7b7;

  /* font families */
  --font-priamry: "Circular Std";
}

/* Font Family */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,700&display=swap");

/* common styles */
body {
  font-family: var(--font-priamry), system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  font-size: 16px;
  color: var(--text-gray);
  background-color: var(--bg-mostly-white-100);
}

#app {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
}

.table-responsive {
  white-space: nowrap;
}

.table-responsive table {
  margin-bottom: 0 !important;
}

.table-responsive::-webkit-scrollbar {
  height: 0.5rem;
}

.table-responsive::-webkit-scrollbar-track {
  background: #efefef;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #c9cacc;
  border-radius: 20px;
}

.btn {
  padding-inline: 16px;
}

.btn_primary {
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

.btn_primary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn_danger {
  background-color: var(--text-orange-red);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

.btn_danger:hover {
  background-color: var(--text-orange-red);
  color: var(--white);
}

.btn-outline-gray {
  border: 1px solid var(--border-gray);
  color: var(--text-gray);
  background-color: transparent;
  text-decoration: none;
}

.btn-outline-gray:hover {
  border: 1px solid var(--border-gray);
  color: var(--text-gray);
  background-color: transparent;
}

.profile_icon {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

/* header main starts */
.header_main {
  background: var(--white);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.02);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.navbar_main .container-fluid {
  padding-block: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

 .container-fluid .aboutus{
  display: flex; 
  align-items: center;
  justify-content: left;
  gap: 10px;
}

.navbar-brand > * {
  width: 78px;
}

.search_box {
  flex: 0 0 55%;
  border: 1px solid var(--border-gray);
  border-radius: 50rem;
  display: flex;
  align-items: center;
}

.search_box .form-control {
  border-radius: 50rem;
  border: none;
  margin: 6px;
}

.search_box .search_utils {
  flex-shrink: 0;
  border-left: 1px solid var(--border-gray);
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.search_utils .customize_test {
  margin-left: 10px;
  margin-right: 20px;
  position: relative;
}

.search_utils .customize_test::after {
  content: "";
  position: absolute;
  background: url(../assets/images/customizearrow.png) no-repeat scroll center
    center / contain;
  height: 16px;
  width: 16px;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.search_utils .customize_test span {
  color: var(--primary);
  color: var();
  cursor: pointer;
}

.customize_test .dropdown-toggle {
  text-decoration: none;
  color: var(--primary);
}

.customize_test .dropdown-toggle::after {
  border-color: transparent transparent currentColor currentColor;
}

.header-dropdown-list {
  height: 185px;
  overflow-y: scroll;
}

.custom-drpodown .dropdown-menu {
  margin-top: 50px !important;
}

.header-dropdown {
  top: 30px !important;
  position: relative;
  z-index: 1;
}

.header-dropdown::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--white);
  top: -8px;
  right: 20px;
  border-radius: 2px;
  transform: rotate(45deg);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  z-index: -1;
}

.header-dropdown li a {
  justify-content: flex-start !important;
  font-size: 12px;
  color: var(--text-gray);
}

.header-dropdown li a img {
  height: 20px !important;
  width: 20px !important;
  margin-right: 10px;
}

.header-dropdown li {
  margin-bottom: 5px;
}

.drop-header-but {
  margin-bottom: -6px;
}

.drop-header-but button {
  background: #f8f8fa;
  width: 100%;
  border: none;
  border-top: 1px solid var(--border-gray);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 0px;
  box-sizing: border-box;
  text-align: left;
  padding-left: 15px;
}

.user-dropdown li a {
  justify-content: flex-start !important;
  font-size: 12px;
  color: var(--text-gray);
}

.user-dropdown li a img {
  margin-right: 10px;
}

.user-dropdown {
  min-width: 110px !important;
  top: 30px !important;
  position: relative;
  z-index: 1;
}

.user-dropdown::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--white);
  top: -8px;
  right: 20px;
  border-radius: 2px;
  transform: rotate(45deg);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  z-index: -1;
}

.header-dropdown-list::-webkit-scrollbar {
  width: 4px;
  width: 4px;
}

.header-dropdown-list::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #ababab;
}

.header-dropdown-list::-webkit-scrollbar-track:hover {
  background-color: #c2c2c2;
}

.header-dropdown-list::-webkit-scrollbar-track:active {
  background-color: #bdbdbd;
}

.header-dropdown-list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #797979;
}

.header-dropdown-list::-webkit-scrollbar-thumb:hover {
  background-color: #979797;
}

.header-dropdown-list::-webkit-scrollbar-thumb:active {
  background-color: #a3a3a3;
}

.user_control {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user_control .dropdown-toggle {
  color: var(--text-gray);
  text-decoration: none;
}

.user_control .dropdown-toggle > span {
  margin-right: 8px;
}

.menu-btn,
.search_box_icon {
  display: none;
}

/* sidebar */
.sidebar {
  position: fixed;
  left: 0;
  bottom: 0;
  height: calc(100vh - 72px);
  display: flex;
  z-index: 999999;
}

.sidebar_menu {
  padding-block: 20px;
  min-height: 100%;
  width: fit-content;
  overflow: hidden auto;
  scrollbar-width: thin;
  scrollbar-color: #797979 #ababab;
  background-color: var(--bg-bluish-dark);
}

/* Chrome, Edge and Safari */
.sidebar_menu::-webkit-scrollbar {
  width: 4px;
  width: 4px;
}

.sidebar_menu::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #ababab;
}

.sidebar_menu::-webkit-scrollbar-track:hover {
  background-color: #c2c2c2;
}

.sidebar_menu::-webkit-scrollbar-track:active {
  background-color: #bdbdbd;
}

.sidebar_menu::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #797979;
}

.sidebar_menu::-webkit-scrollbar-thumb:hover {
  background-color: #979797;
}

.sidebar_menu::-webkit-scrollbar-thumb:active {
  background-color: #a3a3a3;
}

.sidebar_menu > * {
  padding: 0;
  margin: 0;
  list-style-type: none;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.sidebar_menu__top {
  flex-basis: 55%;
  border-bottom: 1px solid var(--border-bluish-dark);
}

.sidebar_menu__top .sidebar_menu__item:last-of-type {
  margin-top: auto;
}

.inner_content {
  max-width: calc(100% - 68px);
  width: 100%;
  float: right;
  padding-block: 15px 84px;
}

.sidebar_menu__item {
  display: flex;
  align-items: center;
  background: transparent;
  width: calc(100% + 34px);
  padding: 3px 0px 5px 10px;
  border-radius: 20px 0px 0px 20px;
  margin-left: -10px;
}

.sidebar_menu__item:hover {
  background: var(--bg-mostly-white-100);
  transition: 0.5s;
}

.sidebar_menu__item_link {
  text-decoration: none;
}

.sidebar_menu__item:hover .sidebar_menu__item_link svg path {
  fill: var(--text-gray);
}

.sidebar_menu__item .visable_content {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  padding-left: 10px;
  margin-bottom: -3px;
  transition: 0.3s;
}

.sidebar_menu__item:hover .visable_content {
  color: var(--text-gray);
}

.sidebar_menu__item:hover .side_content {
  color: var(--text-gray);
  transition: 0.5s;
}

.side_content {
  display: none;
  color: #d5e2f4;
  font-weight: 400;
  font-size: 14px;
  padding-left: 10px;
  margin-bottom: -4px !important;
}

.collaps_sidebar svg {
  transition: 0.2s;
}

.collaps_sidebar.rotate svg {
  rotate: 180deg;
}

/* Setting page start
------------------------------*/
.setting-inner-content {
  max-width: calc(100% - 68px);
  padding-top: 0;
}

.setting-area {
  display: flex;
  padding-bottom: 20px;
}

.setting-menu-area {
  width: 230px;
  background: var(--white);
  border-right: 1px solid var(--border-gray);
  /* overflow-y: scroll; */
  min-height: 740px;
  transition: 300ms;
}

.setting-menu-area.hide {
  max-width: 0;
  overflow: hidden;
  border: 0;
}

/* .setting-menu-area::-webkit-scrollbar{
  width: 0px;
}
 */
.setting-menu-area .menu-title h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  padding: 15px 20px;
}

.setting-menu-area .accordion-button:not(.collapsed)::after {
  background-image: url(../assets/images/setting/menu-arrow.svg);
  transform: inherit;
}

.setting-menu-area .accordion-button::after {
  background-image: url(../assets/images/setting/menu-arrow.svg);
  height: 6px;
  width: 9px;
  background-size: contain;
}

.setting-menu-area .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.setting-menu-area .accordion-item {
  border: none;
}

.setting-menu-area .accordion-button {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--dark);
}

.setting-menu-area .accordion-body {
  padding: 20px 0px 20px 20px;
}

.setting-menu-area .accordion-body .nav {
  width: 100%;
}

.setting-menu-area .accordion-body .nav {
  width: 100%;
}

.setting-menu-area .accordion-body .nav button {
  font-weight: 400;
  font-size: 14px;
  line-height: 32px;
  color: var(--text-gray);
  text-align: left;
}

.setting-menu-area .nav-pills .nav-link.active,
.setting-menu-area .nav-pills .show > .nav-link {
  background: var(--bg-mostly-white-100);
  border-top: 1px solid var(--border-gray);
  border-left: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  padding: 0;
  padding-left: 20px;
}

.setting-menu-area .nav-pills .nav-link {
  padding: 0;
  padding-left: 20px;
  border: 1px solid transparent;
  position: relative;
  border-top-left-radius: 55px;
  border-bottom-left-radius: 55px;
}

.setting-menu-area .nav-pills .nav-link.active::after {
  position: absolute;
  content: " ";
  height: 100%;
  width: 2px;
  top: 0;
  right: -2px;
  background: var(--bg-mostly-white-100);
}

.nav-pills .nav-link {
  border-radius: inherit;
}

.setting-menu-area .my-profile a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  margin: 15px 10px;
  background-color: var(--bg-mostly-white-100);
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--dark);
  text-decoration: none;
}

.setting-content-area {
  margin-left: 20px;
  width: 100%;
}

.setting-alert-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.setting-alert-area .alert {
  margin-bottom: 0;
  /* max-width: 816px; */
  width: 100%;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--text-lime);
  padding: 10px 20px;
  background: var(--bg-lime);
  border: 1px solid var(--border-lime);
  border-radius: 8px;
}

.setting-alert-area .alert-dismissible .btn-close {
  padding: 12px 20px;
  background: transparent url(../assets/images/setting/alert-close.svg)
    center/1em auto no-repeat;
  background-size: inherit;
}

.setting-alert-btn {
  max-width: 160px;
  width: 100%;
  text-align: right;
}

/* Tab Content Area */
.accor-single-item {
  /* overflow: hidden; */
  border: 1px solid #e2e0f4;
  border-block: 0;
}

.accor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-gray);
  padding: 15px 20px;
  background-color: var(--white);
}

.accor-head .accor-title-btn {
  cursor: pointer;
}

.accor-single-item:not(:last-child) .accor-head {
  border-bottom: 1px solid var(--border-gray);
}

.accor-single-item:first-child {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  /* border: 1px solid #e2e0f4; */
  border-bottom: 0;
}

.accor-single-item:first-child .accor-head {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-top: 1px solid var(--border-gray);
}

.accor-single-item:last-child .accor-head {
  border: inherit;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.accor-single-item:last-child {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  /* border: 1px solid #e2e0f4; */
  border-top: 0;
}

.accor-single-item.active .accor-head {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.accor-single-item.active .accor-head {
  background-color: var(--bg-mostly-white-100);
}

.accor-title-btn {
  display: flex;
  align-items: center;
}

.accor-title-btn button {
  border-radius: 50%;
  background-color: var(--bg-mostly-white-100);
  height: 20px;
  width: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.accor-single-item .accor-title-btn button img {
  transition: 300ms;
}

.accor-single-item.active .accor-title-btn button img {
  transform: rotate(180deg);
}

.accor-single-item.active .accor-head .accor-title-btn button {
  background-color: var(--white);
}

.accor-title-btn span {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--dark);
  margin-left: 8px;
}

.accor-single-item .accor-body {
  padding: 20px;
  background-color: var(--white);
  display: none;
  border-bottom: 1px solid var(--border-gray);
}

.accor-single-item:last-child .accor-body {
  /* border-bottom: inherit; */
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.meta-content {
  background-color: var(--bg-mostly-white-100);
  box-shadow: 0px 4px 50px rgba(245, 247, 251, 0.25);
  border-radius: 16px;
  padding: 25px;
}

.meta-right {
  flex-basis: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.accor-content .form-check-input {
  border: 1px solid var(--border-gray);
  margin-top: 8px;
}

.accor-content label {
  font-weight: 400;
  font-size: 13px;
  line-height: 30px;
  color: var(--text-gray);
}

/* setting span */
.accor-content label span {
  background-color: var(--white);
  border-radius: 8px;
  padding: 3px 5px;
  border: 1px solid var(--border-gray);
}

/* setting span */
/* new setting */
.accor-content label input {
  background-color: var(--white);
  border-radius: 8px;
  padding: 3px 5px;
  border: 1px solid var(--border-gray);
  height: 22px;
  width: 35px;
  font-weight: 400;
  font-size: 13px;
  line-height: 30px;
  color: var(--text-gray);
  text-align: center;
}

.accor-content label .input_2 {
  width: 43px;
}

.accor-content label input:focus {
  outline: none;
}

/* Chrome, Safari, Edge, Opera */
.accor-content label input::-webkit-outer-spin-button,
.accor-content label input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.accor-content label input[type="number"] {
  -moz-appearance: textfield;
}

/* new setting */

.accor-content .form-check-input:focus {
  box-shadow: none;
}

.accor-content textarea {
  max-width: 465px;
  width: 100%;
  height: 48px;
  border: 1px solid var(--border-gray);
  margin-left: 24px;
  border-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 5px 8px;

  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
}

.accor-content textarea:focus {
  outline: none;
}

.accor-content textarea::placeholder {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--text-gray);
}

.form-check-black label {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--dark);
}

.form-check-black .form-check-input {
  margin-top: 5px;
}

.form-check-input:checked[type="radio"] {
  background-image: url("../assets/images/setting/radio-check.svg");
  /* border: 2px solid var(--primary); */
  background-color: var(--white);
  border: none;
}

.accor-content-button .btn {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: var(--white);
}

.accor-content-button {
  text-align: right;
}

.check-range {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 850px;
  width: 100%;
  flex-wrap: wrap;
}

.check-range2 {
  max-width: 780px;
}

.check-range label {
  margin-right: 10px;
}

.form-check-link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.form-check-link label {
  margin-right: 20px;
}

/* setting new */
.form-check-link input {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--dark);
  border: none;
  background: var(--bg-mostly-white-200);
  max-width: 325px;
  width: 100%;
}

.form-check-link input:focus {
  border-bottom: 1px solid var(--text-gray);
}

/* setting new */
.m-bottom {
  margin-bottom: 20px;
}

.meta-title h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--dark);
}

.reset-bottom-btn {
  display: flex;
  justify-content: flex-end;
  margin: 30px 0;
}

.reset-bottom-btn .btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--white);
}

/* Range css  */
#slider22 .slider-selection {
  background: #81bfde;
}

#slider22 .slider-rangeHighlight {
  background: #f70616;
}

#slider22 .slider-rangeHighlight.category1 {
  background: #ff9900;
}

#slider22 .slider-rangeHighlight.category2 {
  background: #99cc00;
}

/* range collected css */
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.bs-tooltip-auto[x-placement^="top"] .arrow,
.bs-tooltip-top .arrow {
  bottom: 0;
}

.slider .tooltip.bs-tooltip-top .arrow,
.slider .tooltip.bs-tooltip-bottom .arrow {
  left: -0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.bs-tooltip-top .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

/* Range my css  */
.slider-range {
  display: flex;
  align-items: center;
  position: relative;
}

.slider-range .span-left {
  margin-right: 12px;
  margin-bottom: 3px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--text-gray);
}

.slider-range .span-right {
  margin-left: 7px;
  margin-bottom: 5px;
  width: 35px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--text-gray);
}

.slider-range .slider.slider-horizontal .slider-track {
  height: 5px;
}

.slider-range .slider-handle {
  height: 9px;
  width: 9px;
  background-color: var(--dark);
  top: 3px;
  background-image: none;
}

.slider-range .tooltip {
  position: absolute;
  margin-top: -50px;
  left: 0;
}

.slider-range .slider .bs-tooltip-top .tooltip-inner,
.slider .bs-tooltip-bottom .tooltip-inner {
  /* left: -84%; */
  left: -60%;
  background-color: var(--white);
  border: 1px solid var(--border-gray);
  color: var(--text-gray);
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  width: 40px;
  top: -5px;
}

.slider-range .slider .bs-tooltip-top .tooltip-inner:after,
.slider .bs-tooltip-bottom .tooltip-inner:after {
  left: 23%;
}

.slider-range .slider .tooltip.bs-tooltip-top .arrow,
.slider .tooltip.bs-tooltip-bottom .arrow {
  left: -5px;
  top: 5px;
}

.slider-range .bs-tooltip-auto[x-placement^="top"] .arrow::before,
.bs-tooltip-top .arrow::before {
  border-top-color: var(--border-gray);
}

.slider-range #slider22 .slider-rangeHighlight.category1 {
  left: 0 !important;
  width: 35% !important;
  background: #fc7b10;
}

.slider-range #slider22 .slider-rangeHighlight.category2 {
  left: 34.5% !important;
  width: 33.5% !important;
  background: #50b77e;
}

.slider-range #slider22 .slider-rangeHighlight {
  left: 67% !important;
  width: 33% !important;
  background: #fe2c32;
}

.slider-range .slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -5px;
}

/* slider range 2 */
.slider-range2 #slider22 .slider-rangeHighlight.category1 {
  left: 0 !important;
  width: 50% !important;
  background: #fe2c32;
}

.slider-range2 #slider22 .slider-rangeHighlight.category2 {
  left: 49.5% !important;
  width: 36% !important;
  background: #fc7b10;
}

.slider-range2 #slider22 .slider-rangeHighlight {
  left: 85% !important;
  width: 15% !important;
  background: #50b77e;
}

/* slider range 3 */
.slider-range3 #slider22 .slider-rangeHighlight.category1 {
  left: 0 !important;
  width: 45% !important;
  background: #fe2c32;
}

.slider-range3 #slider22 .slider-rangeHighlight.category2 {
  left: 44.5% !important;
  width: 31% !important;
  background: #fc7b10;
}

.slider-range3 #slider22 .slider-rangeHighlight {
  left: 75% !important;
  width: 25% !important;
  background: #50b77e;
}

/* slider range 4 */
.slider-range4 #slider22 .slider-rangeHighlight.category1 {
  left: 0 !important;
  width: 40% !important;
  background: #fe2c32;
}

.slider-range4 #slider22 .slider-rangeHighlight.category2 {
  left: 39.5% !important;
  width: 41% !important;
  background: #fc7b10;
}

.slider-range4 #slider22 .slider-rangeHighlight {
  left: 80% !important;
  width: 20% !important;
  background: #50b77e;
}

/* slider range 5 */
.slider-range5 #slider22 .slider-rangeHighlight.category1 {
  left: 0 !important;
  width: 40% !important;
  background: #fe2c32;
  display: none;
}

.slider-range5 #slider22 .slider-rangeHighlight.category2 {
  left: 0% !important;
  width: 50.5% !important;
  background: #fc7b10;
}

.slider-range5 #slider22 .slider-rangeHighlight {
  left: 50% !important;
  width: 50% !important;
  background: #50b77e;
}

/* slider range 6 */
.slider-range6 #slider22 .slider-rangeHighlight.category1 {
  left: 0 !important;
  width: 40% !important;
  background: #fe2c32;
  display: none;
}

.slider-range6 #slider22 .slider-rangeHighlight.category2 {
  left: 0% !important;
  width: 75.5% !important;
  background: #50b77e;
}

.slider-range6 #slider22 .slider-rangeHighlight {
  left: 75% !important;
  width: 25% !important;
  background: #fe2c32;
}

/* slider range 7 */
.slider-range7 #slider22 .slider-rangeHighlight.category1 {
  left: 0 !important;
  width: 25% !important;
  background: #fc7b10;
}

.slider-range7 #slider22 .slider-rangeHighlight.category2 {
  left: 24.5% !important;
  width: 33.5% !important;
  background: #50b77e;
}

.slider-range7 #slider22 .slider-rangeHighlight {
  left: 57% !important;
  width: 42.5% !important;
  background: #fe2c32;
}

/* Range my css end */

/* Performance CSS start */
.performance-notice p {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: var(--text-gray);
}

.performance-notice p a {
  text-decoration: none;
  color: #8346b8;
  transition: 0.3s;
}

.performance-notice p a:hover {
  color: #8346b8c4;
}

.performance-content {
  color: inherit;
  display: flex;
  background: inherit;
  padding: 0;
}

.performance-left {
  flex-basis: calc(50% - 15px);
  margin-right: 15px;
  background: #f4f8ff;
  box-shadow: 0px 4px 50px rgba(245, 247, 251, 0.25);
  border-radius: 16px;
  padding: 25px;
}

.performance-right {
  flex-basis: calc(50% - 15px);
  margin-left: 15px;
  background: #f1faf8;
  box-shadow: 0px 4px 50px rgba(245, 247, 251, 0.25);
  border-radius: 16px;
  padding: 25px;
}

.performance-button {
  margin: 20px 0;
  text-align: left;
}

.performance-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.performance-title h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--dark);
}

.tooltips-flex {
  display: flex;
  align-items: center;
}

.overall-tooltips {
  margin-left: 5px;
  align-self: baseline;
  position: relative;
  cursor: pointer;
  margin-top: 3px;
}

.overall-tooltips svg {
  cursor: pointer;
}

.tooltips-contents {
  background: var(--white);
  border: 1px solid var(--border-gray);
  box-shadow: 0px 0px 50px #e9e8e8;
  border-radius: 16px;
  padding: 20px;
  /* max-width: 260px; */
  width: 260px;
  height: auto;
  position: absolute;
  top: -200px;
  left: -15px;
  display: none;
  transition: 0.3s;
}

.tooltips-contents::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  background: var(--white);
  bottom: -6px;
  left: 15px;
  transform: rotate(45deg);
  border-right: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.overall-tooltips:hover .tooltips-contents {
  display: block;
}

.tooltips-contents p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-gray);
}

.color-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 180px;
  width: 100%;
}

.color-flex p {
  margin-bottom: 5px;
}

.color-flex h6 {
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: var(--dark);
}

.color-flex span {
  height: 12px;
  width: 12px;
  border-radius: 2px;
  display: inline-block;
  margin: -1px;
}

.tooltips-contents .color-flex:nth-of-type(1) span {
  background: #e52f34;
}

.tooltips-contents .color-flex:nth-of-type(2) span {
  background: #eca059;
}

.tooltips-contents .color-flex:nth-of-type(3) span {
  background: #4eb37b;
}

.score-range1 .slider.slider-horizontal {
  max-width: 117px;
  /* width: 100%; */
}

.overall-item .range-value p {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--text-gray);
  margin-bottom: 0;
}

/* .overall-item .range-value h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: var(--dark);
  border: 1px solid var(--border-gray);
  box-shadow: 0px 4px 50px rgba(226, 224, 244, 0.5);
  border-radius: 3px;
  margin-bottom: 0;
  background: var(--white);
  height: 30px;
  width: 50px;
}
 */
/* setting new */
.overall-item .range-value input {
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: var(--dark);
  border: 1px solid var(--border-gray);
  box-shadow: 0px 4px 50px rgba(226, 224, 244, 0.5);
  border-radius: 3px;
  margin-bottom: 0;
  background: var(--white);
  height: 30px;
  width: 50px;
}

/* Chrome, Safari, Edge, Opera */
.overall-item .range-value input::-webkit-outer-spin-button,
.overall-item .range-value input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.overall-item .range-value input[type="number"] {
  -moz-appearance: textfield;
}

/* setting new */
.overall-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.range-value {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-range1 #slider22 .slider-rangeHighlight.category1 {
  left: 0 !important;
  width: 49% !important;
  background: #fe2c32;
  display: block !important;
}

.score-range1 #slider22 .slider-rangeHighlight.category2 {
  left: 49% !important;
  width: 40% !important;
  background: #fc7b10;
  display: block !important;
}

.score-range1 #slider22 .slider-rangeHighlight {
  left: 89% !important;
  width: 11% !important;
  background: #50b77e;
  display: block !important;
}

.overall-item2 {
  display: inherit;
}

.score-range-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 25px;
  flex-wrap: wrap;
}

.score-range-flex .score-range1 .slider.slider-horizontal {
  max-width: 200px;
  /* width: 100%; */
}

.range-sec {
  display: flex;
  align-items: center;
}

.range-sec span {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--text-gray);
  margin-left: 5px;
}

.range-value2 {
  align-items: flex-start;
}

.setting-alert-area .alert {
  display: block;
}

.setting-alert-area .alert2 {
  display: none;
}

.setting-alert-area .alert2 {
  background: #f6e1e2;
  border: 1px solid #fcd1d3;
  color: #a85658;
}

.score-range2 #slider22 .slider-rangeHighlight.category1 {
  left: 0 !important;
  width: 58% !important;
  background: #50b77e;
}

.score-range2 #slider22 .slider-rangeHighlight.category2 {
  left: 58% !important;
  width: 27% !important;
  background: #fc7b10;
  display: block !important;
}

.score-range2 #slider22 .slider-rangeHighlight {
  left: 85% !important;
  width: 15% !important;
  background: #fe2c32;
  display: block !important;
}

.score-range3 #slider22 .slider-rangeHighlight.category1 {
  left: 0 !important;
  width: 41% !important;
  background: #50b77e;
}

.score-range3 #slider22 .slider-rangeHighlight.category2 {
  left: 41% !important;
  width: 44% !important;
  background: #fc7b10;
  display: block !important;
}

.score-range3 #slider22 .slider-rangeHighlight {
  left: 85% !important;
  width: 15% !important;
  background: #fe2c32;
  display: block !important;
}

.score-range4 #slider22 .slider-rangeHighlight.category1 {
  left: 0 !important;
  width: 21% !important;
  background: #50b77e;
}

.score-range4 #slider22 .slider-rangeHighlight.category2 {
  left: 21% !important;
  width: 44% !important;
  background: #fc7b10;
  display: block !important;
}

.score-range4 #slider22 .slider-rangeHighlight {
  left: 65% !important;
  width: 35% !important;
  background: #fe2c32;
  display: block !important;
}

.score-range5 #slider22 .slider-rangeHighlight.category1 {
  left: 0 !important;
  width: 26% !important;
  background: #50b77e;
}

.score-range5 #slider22 .slider-rangeHighlight.category2 {
  left: 26% !important;
  width: 59% !important;
  background: #fc7b10;
  display: block !important;
}

.score-range5 #slider22 .slider-rangeHighlight {
  left: 85% !important;
  width: 15% !important;
  background: #fe2c32;
  display: block !important;
}

/* Performance CSS end */
/* Setting Area End
------------------------------*/

/* Switch CSS Start
------------------------------*/
.toggle-button-cover {
  position: relative;
}

.button-cover,
.knobs,
.layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.button {
  position: relative;
  top: 50%;
  width: 50px;
  height: 22px;
  overflow: hidden;
  right: 50px;
  transform: translateY(-50%);
}

.button.r,
.button.r .layer {
  border-radius: 100px;
}

.checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.knobs {
  z-index: 2;
}

.layer {
  width: 100%;
  background-color: var(--white);
  transition: 0.3s ease all;
  z-index: 1;
  border: 1px solid var(--text-orange-red);
}

/* Button 9 */
#button-9 .knobs:before,
#button-9 .knobs:after {
  position: absolute;
  top: -5px;
  width: 20px;
  height: 10px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  padding: 9px 4px;
  border-radius: 50%;
  transition: 0.4s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

#button-9 .knobs span {
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
  transition: 0.4s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  transform: translateY(-50%);
}

#button-9 .knobs:before {
  content: "Off";
  right: 10px;
  color: var(--text-orange-red);
}

#button-9 .knobs:after {
  content: "On";
  left: -20px;
  color: var(--text-lime-deep);
}

#button-9 .knobs:before,
#button-9 .knobs:after {
  z-index: -1;
}

#button-9 .knobs span {
  left: 4px;
  background-color: var(--text-orange-red);
  z-index: 1;
}

#button-9 .checkbox:checked + .knobs:before {
  right: -20px;
}

#button-9 .checkbox:checked + .knobs:after {
  left: 3px;
}

#button-9 .checkbox:checked + .knobs span {
  left: 31px;
  background-color: var(--text-lime-deep);
}

#button-9 .checkbox:checked ~ .layer {
  background-color: var(--bg-lime);
  border: 1px solid var(--text-lime-deep);
}

/* Switch CSS End
------------------------------*/
/* Setting page end
------------------------------*/

/* Profile page start
--------------------------------------*/
/* .container-fluid {
  padding-right: 80px !important;
}

.body_padding .container-fluid {
  padding-left: 80px !important;
}

.footer-area {
  padding-right: 75px !important;
}
 */

.form-body {
  background: var(--white);
  border: 1px solid var(--border-gray);
  box-shadow: 0px 0px 50px var(--bg-mostly-white-200);
  border-radius: 16px;
  padding: 1.3rem 2rem;
}

.from-title {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: var(--dark);
  padding-bottom: 10px;
}

.profile-single-input .form-text {
  text-align: right;
}

.form-text {
  font-size: 13px;
}

.profile-single-input label {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 8px;
  color: var(--dark);
}

.profile-single-input {
  margin-bottom: 15px;
}

.update-profile {
  margin-top: 10px;
}

.password-section {
  margin-top: 25px;
}

.update-password2 {
  margin-top: 10px;
}

.update-password3 {
  margin-top: 30px;
}

.delete-account {
  margin-block: 30px;
}

.profile-single-input {
  position: relative;
}

.profile-single-input .eye-icon {
  content: "";
  position: absolute;
  bottom: 0;
  transform: translateY(-50%);
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b7b7b7;
}

.was-validated .form-control {
  background-image: none !important;
}

.not-metch-pass {
  border-color: var(--text-orange-red);
}

.form-text-color {
  text-align: right;
  color: var(--text-orange-red);
  margin-top: -10px;
}

.success-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 30px;
  line-height: 30px;
  background: var(--bg-lime);
  border: 1px solid var(--border-lime);
  border-radius: 8px;
}

.success-section p {
  margin-bottom: 3px;
}

.profile-single-input input::placeholder {
  margin-bottom: -10px;
}

.edit-profile,
.change-password {
  text-decoration: none;
  display: block;
  color: var(--primary);
}

.edit-profile {
  margin-top: -15px;
}

.delete-center {
  color: var(--primary);
}

.profile-modal-dialog {
  max-width: 660px;
  width: 100%;
}

.profile-modal-dialog .modal-content {
  padding-left: 18px;
}

.frofile-modal-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.frofile-modal-header span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: var(--text-orange-red);
  color: var(--white);
  margin-right: 10px;
}

.frofile-modal-header h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px !important;
  line-height: 23px;
  color: var(--dark);
}

.profile-modal span {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 7px;
  margin-top: 6px;
}

.profile-modal .form-check label {
  font-weight: 400;
  font-size: 14px;
}

.profile-modal p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-gray);
  margin-bottom: 1px;
}

.back-modal {
  border: none;
  background: none;
}

.modal-body .form-check-input:checked {
  background-color: var(--primary);
  border-color: none;
}

.modal-body .form-check-input[type="radio"]:focus {
  box-shadow: none;
}

.back-modal {
  margin-right: 45px;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 400;
}

.profile-footer-modal .btn_danger {
  font-weight: 400;
  font-size: 14px;
  padding: 4px 15px;
}

.profile-textarea textarea {
  height: 84px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
}

.profile-textarea p {
  text-align: right;
}

.modal-body .form-check {
  padding-bottom: 5px;
  padding-top: 5px;
}

/* Profile page end
--------------------------------------*/

/*******************************************************************
                      Tracker-column-option Css
*******************************************************************/
.confirm-mobile {
  display: none;
}

.menu-btn2 {
  display: none;
}

.table-row-border {
  background-color: #ffffff;
  border: 1px solid var(--border-gray);
  margin: 0px;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 46px;
  margin-bottom: 48px;
}

/* Chrome, Edge and Safari */
.table-row-border::-webkit-scrollbar {
  width: 10px;
  width: 10px;
}

.table-row-border::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #e2e0f4;
}

.table-row-border::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #b9b8c3;
}

.table-row-border::-webkit-scrollbar-thumb:active {
  background-color: #c9cacc;
}

.tracker-title h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: var(--dark);
}

.table-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 22px;
  background: var(--white);
}

.table-menu-left {
  display: flex;
  align-items: center;
  padding: 15px 10px;
}

.undo-redo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 17px;
}

.undo-redo img {
  height: 15px;
  width: 17px;
  margin-bottom: 5px;
}

.undo-redo span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px;
  color: #6e6e6e;
  color: var(--text-gray);
  cursor: pointer;
  display: block;
}

.table-menu-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu-right-option a {
  display: flex;
  font-size: 11px;
  text-decoration: none;
  color: var(--text-gray);
}

.menu-right-option .dropdown-item {
  font-size: 11px !important;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.view-icon {
  margin-top: 5px;
}

.menu-right-option .dropdown-toggle::after {
  margin-top: 18px;
  margin-left: 8px;
  height: 6px;
  width: 6px;
}

.menu-right-option img {
  width: 15px;
  height: auto;
  object-fit: contain;
  cursor: pointer;
}

.menu-recheck-option {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-recheck-option {
  font-size: 12px;
  height: 28px;
  width: 118px;
  border-radius: 50px;
  background: var(--primary);
  backdrop-filter: blur(25px);
  padding-left: 15px;
  padding-right: 15px;
  border: none;
}

.menu-recheck-gray {
  background: var(--border-dark);
}

.menu-recheck-option .dropdown-item {
  font-size: 13px;
}

.menu-recheck-option a {
  text-decoration: none;
  font-size: 11px !important;
}

.menu-recheck-option .dropdown-toggle span {
  color: var(--white);
  font-size: 11px;
}

.menu-recheck-option span {
  padding-top: -5px;
}

.menu-recheck-option .dropdown-toggle::after {
  border: 1px solid transparent;
  width: 6px;
  height: 6px;
  border-color: transparent transparent var(--white) var(--white);
  rotate: -45deg;
  margin-top: 6px;
}

.check-reload img {
  margin-bottom: 3px;
  height: 16px;
  width: 16px;
}

.menu-recheck-option img {
  height: 16px;
  width: 16px;
}

.main-data-table .dropdown-menu li a {
  font-size: 13px;
}

.tracker-accordion-body {
  padding: 0;
}

.tracker-tooltip {
  position: relative;
}

.tracker-tooltip button {
  background: transparent;
  border: none;
  box-shadow: none;
  position: absolute;
  left: -12px;
  bottom: 11px;
}

.tracker-tooltip button img {
  height: 9px;
  width: 13px;
}

/* Tooltip css Start*/
.tooltip-inner {
  position: relative;
  background: var(--white) !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  color: var(--text-gray);
  box-sizing: border-box;
  height: 38px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  z-index: 4444;
  opacity: 1;
}

.tooltip-inner::after {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  background: var(--white) !important;
  transform: rotate(45deg);
  bottom: -5px;
  left: 44%;
  right: 0;
  z-index: -1;
  opacity: 1;
}

/* Tooltip css End*/
.table-header {
  padding: 10px;
}

.t-search-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.tracker-right-table {
  overflow: hidden;
}

.t-search-url span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.t-search-url input {
  padding-left: 0;
  border: none;
  background: transparent;
  height: 16px;
  width: 100%;
  flex: 1;
  font-size: 12px;
}

.t-search-url input::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 13px;
}

.input-pt-pb {
  margin-bottom: 0px;
}

.input-pt-pb input {
  border-color: none;
  box-shadow: none;
  cursor: pointer;
}

.form-check-input:checked {
  border: none;
  box-shadow: none;
}

.input-pt-pb label {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  box-sizing: border-box;
  color: var(--text-gray);
}

.td-size tr td {
  font-size: 12px;
  color: var(--text-gray);
}

.table > :not(caption) > * > * {
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table-header {
  font-style: normal;
  font-weight: 550;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: var(--primary);
  background: var(--white);
}

.table-header > * {
  min-height: 1.625rem;
}

.table-header th {
  padding: 11px;
  background: var(--white);
  font-weight: 400;
  font-size: 14px;
}

.th-bg th {
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  color: var(--dark);
  padding: 10px;
  font-weight: 400;
  background-color: #f1f5ff !important;
}
.th-bg th:first-child {
  width: auto !important;
}

.th-bg .dropdown-toggle {
  color: var(--dark) !important;
}

.t-search-url span {
  color: var(--text-gray);
}

.table-header img {
  height: 20px;
  width: 20px;
}

.left-menu-check button {
  border: none;
  margin: 0;
  padding: 0;
  background: none;
}

.left-menu-check {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1px;
}

.left-menu-check input {
  cursor: pointer;
}

.left-menu-check label {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
}

.tracker-right-table tbody tr td {
  background: var(--white);
}

.tracker-left-table tbody tr td {
  background: var(--white);
}

.collumn-success {
  background: #e5f5df !important;
}

.collumn-danger {
  background: #f9e6e6 !important;
}

.collumn-gray {
  background: #f7f7f7 !important;
}

.tracker_blank_row {
  height: 34.3px;
}

.main-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.url-btn {
  border: 1px solid #dcdcdc;
  backdrop-filter: blur(25px);
  border-radius: 50px;
  background: var(--bg-mostly-white-200);
  font-weight: 400;
  font-size: 13px;
  line-height: 14px;
  color: var(--text-gray);
  padding: 8px 10px;
}

.url-button {
  margin-left: 14px;
}

.table-pagination {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  margin-right: 30px;
}

.show-row .btn-outline-gray {
  padding: 5px 7px;
  font-size: 12px;
}

.show-row span {
  font-size: 12px;
}

.total-row .btn-outline-gray {
  padding: 5px 7px;
  font-size: 12px;
}

.total-row span {
  font-size: 12px;
}

.svg-inline--fa {
  display: var(--fa-display, inline-block);
  height: 0.9em;
  overflow: visible;
  vertical-align: -0.125em;
  margin-bottom: 5px;
  margin-right: -6px;
  margin-left: -6px;
}

.showing-pagination-btn .btn.btn_primary {
  height: 25px;
  padding: 5px 11px;
}

.showing-pagination-btn .btn.btn-outline-gray {
  height: 25px;
  padding: 5px 11px;
}

.showing-pagination span {
  font-size: 12px;
}

.tracker-column-dropdown a {
  color: var(--dark);
  text-decoration: none;
}

.input-pt-pb label span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  width: 30px;
  background: #f6e1e2;
  border: 1px solid #fcd1d3;
  box-shadow: 0px 4px 50px rgba(245, 247, 251, 0.25);
  border-radius: 4px;
}

.error-text {
  color: #a85658;
}

.tracker-left-input {
  display: flex;
  align-items: center;
  gap: 0px 10px;
}

.tracker-left-input img {
  height: 12px;
  width: 12px;
}

.tracker-right-input {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  padding-right: 0.5rem;
  cursor: pointer;
}

.tracker-right-input svg {
  width: 0.625rem;
  height: auto;
  margin-top: 0.375rem;
}

.tracker-right-input .dropdown ul li a {
  font-size: 12px;
}

.tracker-left-input h6 {
  font-size: 11px;
  color: var(--black);
  font-weight: 400;
}

.tracker-right-input h5 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  width: 35px;
  font-size: 11px;
  color: var(--text-gray);
  background: #dedede;
  box-shadow: 0px 4px 50px rgba(245, 247, 251, 0.25);
  border-radius: 10px;
  margin-left: -40px;
}

.input-pt-pb label p {
  display: inline-block;
  margin: 0;
  padding-top: 2px;
  box-sizing: border-box;
  cursor: pointer;
}

.dropdown a p {
  color: var(--text-gray);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-menu li a img {
  height: 15px;
  width: 15px;
}

.active-table-url {
  height: 100%;
  width: 100% !important;
  background: #f1f5ff !important;
  opacity: 1;
}

.active-table-url2 {
  height: 100%;
  width: 100% !important;
  background: #f7f7f7 !important;
  opacity: 1;
}

.active-table-url ul li a {
  font-size: 12px;
}

.active-table-url ul li button {
  font-size: 12px;
}

.modal.fade .modal-dialog {
  top: 40px;
}

.modal.show .modal-dialog {
  transform: none;
  top: 40px;
}

.dropdown-menu li button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 5px 16px;
  color: var(--dark);
}

.dropdown-menu li button:hover {
  background: var(--bg-lime);
}

.dropdown-menu li button img {
  height: 15px;
  width: 15px;
}

.delete-url-yes-modal {
  padding: 6px 39px;
}

.delete-url-no-modal {
  margin-right: 48px;
  background: none;
  border: none;
}

.modal-dialog.table-modal-dialog {
  max-width: 566px !important;
  width: 100%;
}

.modal-dialog.table-modal-dialog.modal-dialog-centered .modal-content {
  padding: 0px 10px;
}

.btn.btn_primary.rounded-pill.delete-url-yes-modal {
  padding: 2px 36px;
  font-weight: 400;
}

.delete-url-no-modal {
  color: var(--text-gray) !important;
  font-weight: 400;
}

.table-modal-dialog .modal-content .modal-header h1 {
  font-weight: 400;
}

.table-modal-dialog .modal-body p {
  font-size: 12px;
  color: var(--text-gray);
}

.table-modal-dialog .modal-body a {
  font-size: 12px;
  color: var(--dark);
}

.table-modal-dialog .modal-body a img {
  height: 13px;
  width: 13px;
  margin-left: 5px;
}

.table-modal-footer {
  margin-top: 46px;
  padding: 7px 22px;
}

.gray-bg {
  background: var(--placeholder-gray);
}

.tracker-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 15px;
  padding-top: 8px;
}

.tricker-progress {
  background: linear-gradient(90deg, #1e63b8 0.31%, #01b4bc 74.44%);
  border-radius: 10px;
}

.tracker-title .progress {
  height: 3px;
  max-width: 300px;
  width: 100%;
}

.main-tricker-progress {
  display: flex;
  align-items: center;
  margin-top: -8px;
}

.gif-loader img {
  height: 24px;
  width: 24px;
  margin-right: 4px;
}

.rechecking-page {
  display: flex;
  align-items: center;
  margin-bottom: 1px;
}

.rechecking-page span {
  font-size: 11px;
}

.progress-sit-box {
  display: block;
  width: 13px;
  height: 13px;
  background: var(--text-orange-red);
  border-radius: 1px;
  margin-left: 30px;
}

.primary-span {
  color: var(--primary);
  margin-right: 14px;
  font-size: 11px;
}

.dark-span {
  color: var(--dark);
}

.add_url_modal_width {
  max-width: 380px;
  width: 100%;
}

.add_url_modal_width .modal-header h1 {
  font-weight: 500;
  font-size: 14px !important;
}

.add_url_modal_width .modal-header,
.add_url_modal_width .modal-footer {
  border-bottom: none;
  border-top: none;
}

.import-footer .btn.btn_primary.rounded-pill {
  height: 30px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

.import-footer .btn {
  padding-inline: 30px;
}

.import-footer2 .btn {
  padding-inline: 31px;
}

.import-footer2 a {
  text-decoration: none;
  color: inherit;
}

.add_url_modal_width .modal-header button.btn-close {
  margin: 0;
  padding: 0;
  height: 13px;
  width: 13px;
  color: #d5d5dd12 !important;
  margin-top: -17px;
  opacity: 0.2;
}

.import-address-content {
  margin-top: -32px;
}

.import-address-content p {
  font-size: 12px;
}

.import-address-content .address-box input {
  padding: 9px 12px;
  width: 100%;
  border: 1px solid var(--placeholder-gray);
  border-radius: 7px;
  background: var(--white);
  box-sizing: border-box;
  font-size: 13px;
}

.import-address-content h6 {
  font-size: 13px;
}

.import-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 130px;
  margin-top: -5px;
}

.import-back-btn {
  background: none;
  border: none;
  color: var(--text-gray);
}

.import-footer2 {
  margin-top: -12px;
  padding-bottom: 10px;
}

.import-address-content .progress {
  height: 5px;
  margin-top: 10px;
  margin-bottom: 3px;
}

.importing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
}

.importing span {
  font-size: 13px;
}

.importing-url {
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  padding: 10px 0px 0px 0px;
}

/* scrollbar-customize */

/* Firefox */
.importing-url ol {
  padding-left: 33px;
  height: 190px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #b9b8c3 #e2e0f4;
}

/* Chrome, Edge and Safari */
.importing-url ol::-webkit-scrollbar {
  width: 3px;
  width: 3px;
}

.importing-url ol::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #e2e0f4;
}

.importing-url ol::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #b9b8c3;
}

.importing-url ol::-webkit-scrollbar-thumb:active {
  background-color: #8ea3a1;
}

.importing-url ol li {
  font-size: 13px;
}

.importing-url ol li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  width: 30px;
  background: #f6e1e2;
  border: 1px solid #fcd1d3;
  box-shadow: 0px 4px 50px rgba(245, 247, 251, 0.25);
  border-radius: 4px;
  font-size: 13px;
  color: var(--denger);
}

.tracker-title .success-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  line-height: 30px;
  background: var(--bg-lime);
  border: 1px solid var(--border-lime);
  border-radius: 8px;
  color: var(--text-lime);
  padding: 0px 15px;
  width: calc(99% - 163px);
}

.tracker-title .success-section p {
  margin-bottom: 3px;
}

.tracker-title .success-section span {
  cursor: pointer;
  padding-top: 6px;
}

.add_url_modal_width .modal-body p {
  font-size: 13px;
  padding-bottom: 8px;
  margin-top: -24px;
}

.url-import-btn {
  display: block;
  font-size: 13px;
  width: 100%;
  padding: 7px 5px;
  text-align: center;
  background: #f5f5f5;
  border: none;
  border-radius: 5px;
  color: var(--text-gray);
  margin-top: 10px;
  cursor: pointer;
  transition: 0.5s;
}

.url-import-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.crawl-body .url-import-btn {
  background: var(--primary);
  color: var(--white);
  padding: 6px 5px !important;
}

.csv-box label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.csv-box label img {
  height: 20px;
  width: 20px;
}

.csv-box label span {
  color: var(--primary);
  padding-left: 5px;
}

.csv-box input {
  display: none;
}

.csv-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background: var(--bg-mostly-white-100);
  border: 1px solid var(--bg-mostly-white-200);
  border-radius: 7px;
}

.download-formate {
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-bottom: 30px;
}

.download-formate img {
  height: 18px;
  width: 18px;
  margin-right: 8px;
}

.download-formate span {
  color: var(--primary);
  font-size: 14px;
}

.crawl-body .url-import-btn {
  font-size: 14px;
  padding: 11px 5px;
}

.crawl-body a {
  text-decoration: none;
}

.crawl-footer {
  margin-top: -15px;
}

.advance-search input {
  width: 180px;
  height: 28px;
  background: var(--bg-lime);
  border: 1px solid var(--border-gray);
  backdrop-filter: blur(25px);
  border-radius: 50px;
  padding: 8px 25px;
  font-size: 11px;
  color: var(--tex-gray);
}

.advance-icon img {
  height: 16px;
  width: 16px;
}

.advance-search {
  position: relative;
  display: none;
}

.advance-search::after {
  content: "";
  position: absolute;
  background: url(../assets/images/search.png) no-repeat scroll center center /
    cover;
  height: 16px;
  width: 16px;
  left: 5px;
  top: 6px;
}

.advance-search::before {
  content: "";
  position: absolute;
  background: url(../assets/images/crose.png) no-repeat scroll center center /
    cover;
  height: 9px;
  width: 9px;
  right: 10px;
  top: 10px;
  z-index: 1;
}

.single-tracker-accordion .dropdown-item {
  font-size: 13px;
}

.advance_dropdown_list input {
  font-size: 12px;
  max-width: 145px;
  margin-left: 7px;
  border: 1px solid var(--placeholder-gray);
  border-radius: 50px;
  padding: 2px 21px;
  background: var(--bg-mostly-white-100);
}

.single-tracker-accordion .dropdown a {
  color: var(--text-gray);
  text-decoration: none;
  padding: 3px 9px;
}

.advance-search p {
  color: var(--primary);
  font-size: 11px;
  text-align: right;
  margin-bottom: -14px;
}

.tracker-advance-search .accordion-item:last-of-type {
  border-radius: 0px;
  background: var(--white);
}

.tracker-advance-search h6 {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--dark);
  padding: 15px 20px;
  background: var(--bg-mostly-white-200);
}

.tracker-advance-search h6.active {
  background: var(--white);
}

.tracker-accordion-button {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.tracker-accordion-button img {
  height: 8px;
  width: 12px;
  margin-left: 25px;
  opacity: 0.5;
  transform: rotate(180deg);
}

.advance-arrow.active {
  transform: rotate(0deg);
  transition: 0.2s;
}

.single-tracker-accordion {
  height: 38px;
  width: 100%;
  background: var(--bg-mostly-white-200);
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.single-tracker-accordion .dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-mostly-white-100);
  border: 1px solid var(--border-gray);
  border-radius: 50px;
  height: 24px;
  max-width: 93px;
  width: 100%;
  font-size: 12px;
  padding-left: 5px;
  box-sizing: border-box;
  margin-left: 20px;
}

.single-tracker-accordion .dropdown-toggle::after {
  content: "";
  position: absolute;
  border: 1px solid transparent;
  width: 8px;
  height: 8px;
  border-color: transparent transparent var(--text-gray) var(--text-gray);
  rotate: -45deg;
  right: 7px;
  top: 5px;
  margin-left: 20px;
}

.single-tracker-accordion .search_dropdown {
  max-width: 180px;
  width: 100%;
}

.single-tracker-accordion .search_dropdown span {
  color: var(--primary);
}

.advance-and {
  margin-top: -14px;
  margin-left: 20px;
}

.advance-and p {
  display: inline;
  padding: 5px 15px;
  font-size: 13px;
  margin-bottom: 0;
  background: var(--bg-mostly-white-200);
}

.safety-box {
  max-width: 180px;
  width: 100%;
  height: 24px;
}

.safety-box input {
  width: 100%;
  border: 1px solid var(--border-gray);
  background: var(--bg-mostly-white-100);
  border-radius: 50px;
  color: var(--text-gray);
  font-size: 13px;
  padding-left: 10px;
  padding-bottom: 2px;
  margin-left: 20px;
}

.remove-advance-search span {
  display: block;
  margin-top: 5px;
  margin-left: 65px;
  margin-right: 35px;
  cursor: pointer;
  color: var(--text-gray);
}

.add-advance-search .url-btn {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  font-size: 13px;
}

.add-advance-search span {
  color: var(--primary);
  font-size: 22px;
  margin-top: -5px;
  padding-right: 5px;
}

.advance-apply-area .btn {
  padding: 5px 32px;
}

.advance-apply-area .ml-left {
  margin-left: 20px;
}

.advance-apply-area button {
  font-size: 13px;
  font-weight: 600;
}

.advance-apply-area {
  margin-bottom: 19px;
}

.accordion-header button span {
  padding-left: 4px;
  color: #00c32b;
}

.accordion-header button .advance-crose {
  height: 11px;
  width: 11px;
  margin-top: -2px;
  margin-left: -13px;
  margin-right: 6px;
}

.search_dropdown {
  position: relative;
}

.advance_dropdown_list::after {
  content: "";
  position: absolute;
  background: url(../assets/images/search.png) no-repeat scroll center center /
    cover;
  height: 15px;
  width: 15px;
  left: 12px;
  top: 15px;
}

.advance_dropdown_list::before {
  content: "";
  position: absolute;
  background: url(../assets/images/crose.png) no-repeat scroll center center /
    cover;
  height: 10px;
  width: 10px;
  right: 35px;
  top: 17px;
  cursor: pointer;
}

.advance_dropdown_list {
  position: relative;
}

.search_collaps::after {
  content: "";
  position: absolute;
  background: url(../assets/images/arrow.png) no-repeat scroll center center /
    cover;
  height: 7px;
  width: 10px;
  right: 10px;
  top: 19px;
  cursor: pointer;
}

.dropdown-menu.dropdown-menu-start.advance_dropdown_list.show {
  transform: translate(0px, 0px) !important;
}

.tracker-column-modify-bd {
  height: 300px;
  overflow-y: scroll;
  scrollbar-width: thin;
}

.tracker-column-close-btn {
  border: none;
  background: transparent;
  color: var(--primary);
  font-size: 13px;
}

.tracker_column_main {
  max-width: 441px;
  width: 100%;
  top: 20px;
}

.tracker_column_main .modal-title {
  font-size: 16px;
  font-weight: 500;
}

.clumn-accordion-item .accordion-item {
  border: none;
}

.input-padding {
  margin: 0px 5px 0px 12px;
}

.clumn-accordion-item .accordion-button::after {
  background-size: 15px;
}

.clumn-accordion-item .accordion-item:first-of-type .accordion-button {
  padding: 6px 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.clum-accor-item2 .accordion-item:first-of-type .accordion-button {
  font-size: 12px !important;
  font-weight: 400;
}

.clumn-accordion-item .accordion-item:first-of-type {
  border-radius: 5px;
}

.clumn-accordion-item .accordion-button:not(.collapsed) {
  background: var(--bg-mostly-white-200);
  color: var(--dark);
}

.clumn-accordion-item .accordion_inner_btn:not(.collapsed) {
  background: #f5fbfa;
}

.card-body.single-card {
  padding: 0px 23px;
  border: transparent;
}

.accordion_inner_btn {
  font-size: 13px;
}

.accordion_inner_btn3 {
  font-size: 12px !important;
  display: flex;
  align-items: center;
  margin: 4px;
  font-weight: 400;
}

.modal-footer.column_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single_col_footer label {
  display: block;
  margin-bottom: 6px;
}

.single_col_footer {
  font-size: 13px;
}

.single_col_footer input {
  max-width: 156px;
  width: 100%;
  height: 25px;
  border: 1px solid var(--border-gray);
  border-radius: 5px;
  padding-left: 10px;
  display: block;
  margin-bottom: 15px;
}

.single_col_footer input::placeholder {
  color: var(--dark);
}

.single_col_footer .btn_primary {
  padding: 4px 18px;
  font-size: 15px;
  margin-right: 35px;
}

.col_cancel_btn {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 15px;
}

.single_col_footer button {
  background: transparent;
  border: none;
  color: var(--primary);
}

.single-modify {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  cursor: pointer;
  transition: 0.5s;
}

.single-modify:hover {
  background: var(--bg-lime);
  border-radius: 5px;
}

.single-modify a {
  text-decoration: none;
  color: #4a4a4a;
}

.modify-right img {
  height: 15px;
  width: 15px;
  margin-left: 20px;
}

.modify-close {
  justify-content: flex-start;
}

.modify-close button {
  background: transparent;
  border: none;
  color: var(--text-gray);
}

.tracker_main_processing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tricker_download_option .dropdown-toggle::after {
  display: none;
}

.tracker_downloading_link li a {
  display: flex;
  justify-content: flex-start;
  font-size: 13px;
}

.tracker_downloading_link li a img {
  margin-right: 10px;
}

/* Tracker page end
------------------------------*/

/* Tracker page end
------------------------------*/

/* Onboarding page Start
--------------------------------------*/
.onbording-header-padding {
  padding: 5px 72px;
}

.onboard-form-head h4 {
  color: var(--dark);
  font-size: 26px;
  font-weight: 400;
  margin-top: 54px;
}

.form-slider {
  margin: 40px 0;
}

.form-slider-range {
  position: relative;
  width: 350px;
  max-width: 100%;
}

.form-slider-range::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #dce1e8;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.form-slider-range .progress-line {
  position: absolute;
  width: 0;
  height: 2px;
  background: #1e63b8;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.form-slider-range .progress-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #dce1e8;
  border-radius: 50%;
}

.form-slider-range .progress-dot.one {
  left: 0;
}

.form-slider-range .progress-dot.two {
  left: 25%;
}

.form-slider-range .progress-dot.three {
  left: 50%;
}

.form-slider-range .progress-dot.four {
  left: 75%;
}

.form-slider-range .progress-dot.five {
  left: 100%;
}

.form-slider-range .progress-dot.active {
  background-color: var(--primary) !important;
}

.onboard-main-form {
  margin-top: 80px;
}

.onboard-main-form .card {
  padding: 20px;
}

.form-card-title {
  margin-bottom: 20px;
}

.form-card-title h3 {
  font-size: 30px;
  font-weight: 500;
  color: #222222;
}

.form-card-input textarea {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.form-card-input textarea:focus {
  color: var(--text-gray);
}

.form-card-input input {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 7px;
  padding: 10px 18px;
  font-weight: 400;
  color: var(--text-gray);
}

.form-card-input input::placeholder {
  color: var(--text-gray);
  font-weight: 400;
}

.onboard-form-button .btn_primary {
  font-weight: 400;
  padding: 7px 34px;
}

.onboard-main-form .form-card-input input:invalid,
.onboard-main-form .form-control.is-valid:focus,
.was-validated .form-control:valid:focus,
.onboard-main-form .form-control.is-valid,
.was-validated .form-control:valid {
  border-color: var(--border-dark) !important;
  box-shadow: inset 0 0 0 !important;
}

.onboard-main-form .is-invalid ~ .invalid-feedback,
.is-valid ~ .valid-tooltip,
.was-validated :valid ~ .invalid-feedback,
.was-validated :valid ~ .valid-tooltip {
  display: none;
}

.onboard-main-form .form-control.is-invalid,
.was-validated .form-control:invalid {
  background-image: url("../assets/images/analysis/input-close.svg");
  background-size: calc(0.75em + 1.375rem) calc(0.5em + 0.375rem) !important;
}

.onboard-main-form .form-control.is-valid,
.was-validated .form-control:valid {
  background-image: url("../assets/images/analysis/input-check.svg");
}

.form-setp {
  opacity: 0;
  visibility: hidden;
  transition: 300ms ease;
  position: absolute;
}

.form-setp.active {
  position: static;
  opacity: 1;
  visibility: visible;
}

#urlsList{
  margin-bottom: 15px;
}

.onboard-form-button {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
  align-items: center;
}

.onboard-main-form .card {
  background: var(--white);
  border-radius: 15px;
  border: none;
}

.onboard-single-btn {
  float: right;
}

.form-image {
  text-align: center;
}

.form-image img {
  max-width: 300px;
  width: 100%;
  object-fit: contain;
}

.form-single-text {
  margin-top: 30px;
}

.form-single-text p {
  color: var(--tex-gray);
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
}

.form-card-input textarea::-webkit-scrollbar {
  width: 3px;
  background: var(--border-gray);
  border-radius: 50rem;
}

.form-card-input textarea::-webkit-scrollbar-track-piece {
  background: var(--border-gray);
  border-radius: 50rem;
}

.form-card-input textarea::-webkit-scrollbar-thumb {
  background: var(--text-gray);
  border-radius: 50rem;
}

.form-final-content {
  text-align: center;
}

.form-final-content p {
  color: var(--text-gray);
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 25px;
}

.form-final-content button {
  padding: 7px 35px;
}

/* Onboarding page End
--------------------------------------*/

/* loader page Start
-----------------------------------------*/
.card.loader__card {
  margin: 20px 0px 50px 0px;
}

.loader-card-title {
  text-align: center;
}

.loader-img {
  text-align: center;
  margin-top: -20px;
  height: 180px;
}

.failed-title.loader-title-single {
  margin-bottom: -45px;
}

.loader-img.failed-loader-img {
  margin-top: -40px;
  margin-bottom: -30px;
}

.loader-img img {
  height: 100%;
  width: auto;
  transition: 300ms;
}

.loader-card-title p {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #6e6e6e;
  text-align: center;
  margin-bottom: 20px;
}

.loader-progress {
  text-align: left;
  margin: 0px 20px;
}

.loader-checking {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.loader-checking span {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--dark);
}

.loader-bold-span {
  font-weight: 450 !important;
  font-size: 16px !important;
  margin-right: 30px;
}

.loader-card-title .progress {
  margin-bottom: 11px;
  height: 15px;
}

.loader-card-title .loader-details {
  max-width: 130px;
  width: 100%;
  margin: auto;
}

.loader-card-title .loader-details button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  color: var(--text-gray);
  margin-top: 27px;
  border: 0;
  background-color: transparent;
  font-size: 14px;
}

.loader-details p {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #6e6e6e;
}

.list-title h3 {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--dark);
  border-bottom: 1px solid #e2e0f4;
  padding-bottom: 0.375rem;
}

.loader-list-items ul {
  margin: 0;
  padding: 0;
  margin-bottom: 2.5rem;
}

.loader-list-items ul li {
  list-style: none;
  margin-bottom: 10px;
}

.loader-list-items ul li span {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #6e6e6e;
}

.loader-list-items ul li.dark span {
  color: var(--dark);
}

.loader-list-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.loader-list-items > * {
  flex-direction: 0 0 auto;
}

.loader-list-toggle {
  display: none;
  padding-top: 64px;
}

.loader-list-toggle.active {
  display: block;
}

.list-item-select ul li span {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #6e6e6e;
  margin-left: 24px;
}

.list-title-right-mark {
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #e2e0f4;
  margin-bottom: 10px;
}

.list-title-right-mark h3 {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--dark);
}

.loader-title-single h2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: var(--dark);
  margin: 20px 0 9px 0;
}

.loader-title-single h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: var(--dark);
  margin-bottom: 9px;
}

.loader-title-single p {
  max-width: 260px;
  margin: auto;
  margin-bottom: 77px;
}

/* loader page End
-----------------------------------------*/

/* Analysis page Start 
----------------------------------------*/
.analysis-content-body {
  padding-top: 18px;
  padding-bottom: 23px;
}

.link-title {
  margin-bottom: 15px;
}

.link-title h5 {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
}

.report-generate .url {
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  position: relative;
  cursor: pointer;
}

.report-generate span {
  margin-left: 10px;
  cursor: pointer;
}

.progress-download {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding-bottom: 30px;
  gap: 10px;
}

.progress-items {
  flex-basis: 50%;
}

#failed-circle,
#warning-circle {
  margin-right: 25px;
}

.download-items {
  flex-basis: 50%;
}

.download-single-item {
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 1rem;
}

.download-single-link {
  max-width: 140px;
  width: 100%;
}

.download-single-link a {
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  font-weight: 400;
}

.download-single-link a span {
  margin-right: 8px;
}

/* performance Nav Item */
.performance-score {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 55px;
  padding-bottom: 20px;
  margin-left: 50px;
}

.performance-text {
  max-width: 200px;
  width: 100%;
}

.performance-text ul li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e9e9e9;
  line-height: 30px;
  padding-left: 18px;
  position: relative;
}

.performance-text ul li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  transform: translateY(-50%) matrix(1, 0, 0, -1, 0, 0);
  background: #4eb37b;
  border-radius: 2px;
}

.performance-text ul li:nth-child(2):before {
  background: #eca059;
}

.performance-text ul li:nth-child(3):before {
  background: #e52f34;
}

.performance-text ul li:last-child {
  border-bottom: 0;
}

.performance-text ul li span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  opacity: 0.7;
}

.performance-text ul li span:last-child {
  opacity: 1;
  color: #4a4a4a;
  width: 46px;
}

.performance-desktop .performance-btn {
  float: right;
}

.performance-btn {
  display: flex;
  justify-content: space-between;
}

.performance-btn .dropdown a {
  background: transparent !important;
  color: #8f8f8f;
  font-size: 14px;
  font-weight: 400;
  border: none;
  outline: none;
  gap: 3px;
}

.performance-btn .dropdown a.dropdown-toggle::after {
  margin-top: -5%;
}

.performance-single-text {
  max-width: 420px;
  width: 100%;
  margin: auto;
}

.performance-single-text h4 {
  color: var(--text-gray);
  font-size: 16px;
  font-weight: 440;
}

.performance-single-text p {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 20px;
}

.performance-single-text p a {
  text-decoration: none;
}

.performance-mobile {
  padding-bottom: 15px;
}

.performance-btn button {
  background: transparent;
  border: 0;
  outline: 0;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.performance-btn button span {
  padding-left: 7px;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s ease;
  color: var(--text-gray);
}

.performance-mobile-img {
  margin-left: 30px;
  margin-bottom: 20px;
}

.performance-mobile-img svg {
  background: #ffffff;
  border: 1px solid #e2e0f4;
  box-shadow: 0px 0px 20px #e6ebf5;
  border-radius: 10px;
  padding: 7px;
}

.performance-btn button:hover,
.performance-btn button:hover span,
.performance-btn button.active,
.performance-btn button.active span {
  background: #f2f5f9;
  color: var(--primary);
}

.performance-core-items ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-left: 70px;
  margin: 0;
  list-style: none;
}

.performance-core-items ul li {
  margin-bottom: 10px;
  margin-top: 20px;
}

.performance-core-items ul li:last-child {
  max-width: 160px;
  width: 100%;
}

.performance-core-items ul li p {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 400;
  position: relative;
}

.performance-core-items ul li p::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--text-lime-deep);
  top: 30%;
  left: -15px;
  border-radius: 50%;
}

.performance-core-items ul li h2 {
  color: var(--text-lime-deep);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1;
}

.performance-mobile-img .performance-core-items ul {
  flex-direction: column;
}

.performance-list-two .performance-core-items ul li {
  width: 33.33%;
  margin-bottom: 20px;
  margin-top: 0;
}

.performance-list-two .performance-core-items ul li span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-gray);
  max-width: 250px;
  width: 100%;
  display: block;
  line-height: 18px;
}

.performance-list-two .performance-core-items ul li span a {
  text-decoration: none;
}

.performance-list-two .performance-core-items ul li:last-child {
  max-width: 100%;
}

.lighthouse-circle-left {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

#lighthouse-performance,
#lighthouse-accessibility,
#lighthouse-best {
  background: #faf8e9;
  border-radius: 50%;
}

#lighthouse-eso {
  background: #e9faf1;
  border-radius: 50%;
}

.lighthouse-single-circle {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.lighthouse-single-circle p {
  margin-left: 15px;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
}

.performance-grid-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.performance-grid-items .lighthouse-single-circle {
  margin-top: 20px;
}

.lighthose-circle-content {
  display: flex;
  flex-direction: column;
}

.lightose-content {
  flex: 1;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.lightose-content > *:last-child {
  margin-top: auto;
}

.lightose-content p {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 18px;
}

.lightose-content p a {
  text-decoration: none;
}

.active-orange h2 {
  color: #eca059 !important;
}

.active-orange p::before {
  background: #eca059 !important;
}

.active-orange-red p::before {
  background: var(--text-orange-red) !important;
}

.active-orange-red h2 {
  color: var(--text-orange-red) !important;
}

/* Performance Meta */
.meta-graph-table ol {
  margin: 0;
}

.meta-graph-table .badge-orange {
  border: 1px solid var(--text-orange-red);
  background: rgba(250, 84, 87, 0.05);
  color: var(--text-orange-red);
}

.meta-graph-table table {
  margin: 0;
}

.meta-graph-table thead {
  background: #f1f5ff;
}

.meta-graph-table tbody {
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 400;
}

.meta-graph-table tbody p {
  max-width: 475px;
  margin: 0;
}

.meta-graph-table tbody p a {
  width: 100%;
  background: none;
  text-align: left;
  border: 0;
  color: var(--text-gray);
}

.meta-graph-table tbody span {
  color: var(--black);
}

.meta-graph-table a {
  text-decoration: none;
  background: #f3f9f4;
  border: 1px solid #80ae35;
  border-radius: 3px;
  padding: 3px 0;
  width: 100px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: #80ae35;
  display: inline-block;
}

.social-review {
  margin-top: 25px;
}

.social-review img {
  max-width: 100%;
  width: 100%;
}

.social-review .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
  background: #f7f8fa !important;
}

.social-review svg path {
  width: 100% !important;
}

.social-review .card-header h4 {
  margin: 0;
  color: #222222;
  font-size: 16px;
  font-weight: 500;
}

.social-review .card-header a {
  text-decoration: none;
}

.analysis-lealthImg img {
  max-width: 245px;
  object-fit: contain;
  width: 100%;
  margin-top: -25px;
}

/* analysis-meta-accordion */
.analysis-meta-accordion {
  margin-top: 15px;
}

.analysis-meta-accordion .accordion {
  border: 1px solid #ddd;
  border-radius: 10px;
}

.analysis-meta-accordion
  .accordion-flush
  .accordion-item:first-child
  .accordion-button,
.accordion-flush .accordion-item:first-child .accordion-button.collapsed {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.analysis-meta-accordion .accordion-flush .accordion-item:first-child,
.analysis-meta-accordion .accordion-flush .accordion-item:last-child {
  border-radius: 10px;
}

.analysis-meta-accordion .accordion-flush .accordion-item:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.analysis-meta-accordion .accordion-flush .accordion-item:last-child,
.accordion-flush .accordion-item:last-child .accordion-button.collapsed {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.analysis-meta-accordion .accordion-button {
  background: var(--white);
}

.analysis-meta-accordion .accordion-button:focus {
  border-color: inherit;
  outline: 0;
  box-shadow: 0 0 0;
  background: #f7f8fa;
}

.accordiaon-header-tag {
  width: 100%;
}

.accordiaon-header-tag span a {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--text-lime-deep);
  background: rgba(148, 206, 156, 0.1);
  color: var(--text-lime-deep);
  font-size: 14px;
  font-weight: 400 !important;
  margin-right: 20px;
}

.accordiaon-header-tag .badge-orange {
  border: 1px solid var(--text-orange-red);
  background: rgba(250, 84, 87, 0.05);
  color: var(--text-orange-red);
}

.analysis-meta-accordion .accordion-button::after {
  background-size: 15px !important;
}

/* meta-action-item */
.meta-action-item {
  margin-top: 20px;
  margin-bottom: 23px;
}

.meta-action-item .card-header h4 {
  margin: 5px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.meta-action-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.meta-action-item ul li span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  background: #f5f7fb;
  box-shadow: 0px 4px 50px rgba(245, 247, 251, 0.25);
  border-radius: 16px;
  margin-bottom: 10px;
  padding: 5px 35px 5px 10px;
  display: inline-block;
  line-height: 26px;
}

.meta-action-item ul li strong {
  width: 24px;
  height: 24px;
  line-height: 24px;
  display: block;
  float: left;
  padding: 0;
  border-radius: 8px;
  margin-bottom: 0;
  border: 1px solid var(--black);
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-right: 15px;
}

.card-inner-content.on-page .card {
  background: var(--white) !important;
}

.card-inner-content.on-page .card-body {
  padding: 0;
}

.on-page-border {
  border-right: 2px solid #f2f2f2;
}

.text-show-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.analysis-card .card-footer {
  background: var(--white) !important;
}

.product-download-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-download-list ul li {
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
}

.product-download-list ul li a {
  display: inline-block;
  text-decoration: none;
}

.product-download-list ul li a span {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 400;
  margin-left: 2px;
}

.table-data-paginations {
  float: right;
  margin-right: 50px;
}

.table-data-paginations ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.table-data-paginations ul li {
  display: inline-flex;
  align-items: center;
}

.table-data-paginations ul li p {
  margin-bottom: 0;
  margin-right: 5px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-gray);
}

.table-data-paginations ul li select {
  width: 70px;
  margin-right: 10px;
}

.table-data-paginations ul li span {
  width: 50px;
  height: 35px;
  padding-left: 5px;
  line-height: 35px;
  background: #f4f4f4;
  border: 1px solid #d5d5dd;
  margin-right: 10px;
}

.table-data-paginations ul li button {
  width: 50px;
  height: 35px;
  background: #f4f4f4;
  border: 1px solid #d5d5dd;
  border-radius: 0;
}

.table-data-paginations ul li button:hover svg path,
.table-data-paginations ul li button.active svg path {
  stroke: var(--white);
  background: #1e63b8;
}

.badge-green {
  border: 1px solid var(--text-lime-deep);
  background: rgba(148, 206, 156, 0.1);
  color: var(--text-lime-deep);
  font-size: 12px;
  font-weight: 450 !important;
  width: 37px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  display: block;
}

.badge-red {
  border: 1px solid var(--text-orange-red);
  background: #fef6f6;
  color: var(--text-orange-red);
  font-size: 12px;
  font-weight: 450 !important;
  width: 37px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  display: block;
}

.row-orange-bg {
  background: #fef6f6;
}

.analysis-table-image .table-image-link {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  color: var(--primary);
}

.analysis-table-image thead th {
  color: #222222;
  font-size: 12px;
}

.analysis-table-image .table-image-link span {
  margin-right: 7px;
}

.analysis-table-image thead {
  background-color: #f1f5ff;
  font-size: 14px;
  font-weight: 400;
  color: #222222;
}

.analysis-table-image td {
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 400;
}

.meta-link-itemList li:nth-child(4) {
  color: var(--text-orange-red);
}

.meta-link-itemList li::marker {
  color: var(--text-gray);
}

.meta-link-itemList .meta-text-right {
  max-width: 212px;
  width: 100%;
  float: right;
  display: block;
}

.meta-link-itemList .meta-right-text {
  max-width: 100px;
  width: 100%;
}

.meta-link-itemList ol li {
  display: flex;
  justify-content: space-between;
}

.meta-list-brokenHeader {
  border: 0;
  outline: 0;
  background: transparent;
  margin-top: 20px;
  color: var(--text-gray);
  border-bottom: 1px solid var(--text-gray);
  padding: 0;
  font-size: 14px;
}

.meta-list-brokenHeader:focus {
  border-bottom: 1px solid var(--text-gray);
}

.meta-list-brokenBody .modal-dialog {
  max-width: 750px;
  width: 100%;
  top: 20px;
}

.meta-list-brokenBody .card-body {
  background: #fef6f6;
  border-radius: 16px;
}

.meta-list-brokenBody .modal-content {
  max-height: 100%;
  overflow: hidden;
  height: 550px;
}

.meta-list-brokenBody .modal-body {
  scrollbar-width: thin;
}

.meta-list-brokenBody .modal-body::-webkit-scrollbar {
  scrollbar-width: thin;
}

.meta-list-single p {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  flex-wrap: wrap;
}

.meta-list-single strong {
  color: #6e6e6e;
}

.meta-list-brokenBody h1 {
  font-size: 15px !important;
  color: #222222;
}

.meta-list-brokenBody .modal-header > div {
  display: block;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.meta-list-brokenBody .modal-header > div h1 {
  display: inline-block;
}

.meta-list-brokenBody .modal-header > div button {
  float: right;
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  color: #6e6e6e;
  margin-right: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-list-brokenBody .modal-header .btn-close {
  top: 10px;
  position: absolute;
  right: 10px;
  opacity: 0.3;
}

.meta-list-brokenBody .modal-header .btn-close:focus {
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.meta-list-single p a {
  color: var(--primary);
  display: inline-block;
  padding-left: 5px;
  max-width: 465px;
  width: 100%;
}

.meta-list-single p span {
  margin-bottom: 0;
  margin-top: 0;
  width: 22px;
  color: var(--black);
  font-weight: 500;
}

/* Progress Bar */
.progress-items {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.single-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.single-progress span {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 400;
}

.progress-failed,
.progress-warning,
.progress-passed {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}

/* control-hide-show */
.control-hide-show {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.btn_toggle_show {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid transparent;
  background-color: var(--white);
  padding: 3px 6px;
  font-size: 12px;
  color: #6e6e6e;
  transition: 300ms;
  line-height: 1;
}

.btn_toggle_show.active {
  border-color: #1e63b8;
  background-color: #1e63b8;
  color: #ffffff;
}

.btn_toggle_show.active svg {
  fill: #1e63b8;
}

.btn_toggle_show:hover {
  border-color: #1e63b8;
}

.btn_toggle_show .icon {
  background-color: #f7f8fa;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn_toggle_show .icon > * {
  width: 14px;
  height: auto;
  fill: #6e6e6e;
}

/* Meta Tag Start */
.meta-tag-items .nav-tabs {
  margin-top: 20px;
  gap: 20px;
}

.meta-tag-items .nav-link {
  flex: 1;
  background: var(--white);
  box-shadow: 0px 4px 50px rgba(245, 247, 251, 0.25);
  border-radius: 16px;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
  z-index: 1;
  padding: 10px;
}

.meta-tag-items .nav-link:last-child {
  margin-right: 0;
}

.analysis-tab-btn .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  position: relative;
  z-index: 1;
}

.analysis-tab-btn .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary);
  bottom: -7px;
  left: 30px;
  transform: rotate(45deg);
  border-radius: 3px;
  z-index: -1;
}

.meta-tag-items .nav-tabs {
  border: none;
}

.analysis-tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tab-btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.tab-btn-content p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

.tab-btn-content span {
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
}

.analysis-tab-btn .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link .tab-first-item svg path {
  fill: var(--primary);
}

.analysis-tab-btn .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active svg path {
  fill: var(--white);
}

.analysis-tab-btn .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background: var(--primary);
}

.tab-btn-content .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active p,
.tab-btn-content .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active span {
  color: var(--white);
}

.tab-btn-content p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.tab-content-area {
  margin-top: 30px;
}

.tab-content-area .analysis-card {
  margin-bottom: 20px;
}

.tab-content-area .card-header {
  background: var(--white);
}

.card-header-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header-left span img {
  width: 20px;
  margin-top: -2px;
}

.card-header-title h4 {
  font-size: 16px;
  font-weight: 500;
  padding: 0 7px;
  color: var(--dark);
  display: inline;
  line-height: 0;
}

.card-header-title .card-help {
  cursor: pointer;
  position: relative;
}

.card-header-right button {
  border: 1px solid var(--text-orange-red);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-orange-red);
  padding: 2px 12px;
}

.card-header-right button:hover,
.card-header-right button:focus {
  color: var(--text-orange-red) !important;
  border: 1px solid var(--text-orange-red) !important;
}

.card-sniper-group {
  display: flex;
  justify-content: space-between;
}

.card-sniper-group .show-snip-btn button {
  color: var(--white);
  background: var(--primary);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  padding: 3px 5px 6px 6px;
  border-radius: 20px;
  border: 0;
  outline: 0;
  align-items: center;
  width: 115px;
  align-items: center;
}

.show-snip-btn button span {
  padding-left: 5px;
}

.card-single-content p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  max-width: 930px;
  display: flex;
  gap: 5px;
  align-items: flex-start;
}

.card-single-content p .badge {
  border: 1px solid var(--text-lime-deep);
  background: rgba(148, 206, 156, 0.1);
  color: var(--text-lime-deep);
  font-size: 14px;
  font-weight: 400;
  height: 24px;
}

.card-inner-content .card {
  border: 0;
  background: var(--bg-mostly-white-200);
}

.card-inner-content h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  display: inline;
}

.card-inner-content p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  margin-bottom: 3px;
}

.card-content-bottom {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.card-content-bottom .card-single-content {
  margin-right: 20px;
  color: var(--dark);
  font-weight: 400;
}

.card-header-title .card-help-body {
  position: absolute;
  top: -10px;
  left: 27px;
  width: 230px;
  height: auto;
  background: var(--white);
  padding: 15px 20px;
  border: 1px solid #e4e3ef;
  box-shadow: 0px 0px 50px #e9e8e8;
  border-radius: 16px;
  z-index: 9;
  opacity: 1;
  visibility: hidden;
}

.card-header-title .card-help-body::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--white);
  border-radius: 1px;
  border-left: 1px solid #e4e3ef;
  border-bottom: 1px solid #e4e3ef;
  box-shadow: 0px 0px 50px #e9e8e8;
  top: 12px;
  left: -6px;
  transform: rotate(45deg);
  z-index: -9;
}

.card-header-title .card-help-body p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 20px;
  margin-bottom: 5px;
}

.card-header-title .card-help-body a {
  display: inline-block;
  border: none;
  background: inherit;
  color: inherit;
  color: #1e63b8;
  text-decoration: underline;
  font-weight: 400 !important;
  font-size: 14px;
}

.badge-orange a {
  color: #ccccd3 !important;
  font-weight: 400;
}

.problem-help-prymary a {
  color: var(--primary) !important;
  font-weight: 400;
  display: block;
}

.card-header-title .card-help:hover .card-help-body {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

/* Analysis Range */
.performance-range #slider22 .slider-selection {
  background: #81bfde;
}

.performance-range #slider22 .slider-rangeHighlight {
  background: #f70616;
}

.performance-range #slider22 .slider-rangeHighlight.category1 {
  background: #ff9900;
}

.performance-range #slider22 .slider-rangeHighlight.category2 {
  background: #99cc00;
}

/* Analysis Range */

/* card-hide-content */
.card-hide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-hide-content p {
  font-size: 12px;
  color: var(--text-gray);
}

.card-show-icon button {
  background: var(--white);
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 500;
  padding: 3px 7px;
}

.card-show-icon button span {
  display: flex;
  margin-right: 5px;
}

.card-text-link {
  padding: 2px 0;
}

.card-text-link a {
  color: #006621;
  font-weight: 400;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.card-single-text p:first-child {
  font-size: 15px;
  color: #681da8;
  font-weight: 400;
  margin: 3px 0;
}

.card-single-text p:last-child {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.problem-help {
  position: relative;
  font-size: 14px;
  font-weight: 400;
}

.problem-card-help {
  position: absolute;
  top: 16px;
  left: 77%;
  width: 470px;
  height: auto;
  background: var(--white);
  padding: 15px 20px;
  border: 1px solid #e2e0f4;
  box-shadow: 0px 0px 50px #e9e8e8;
  border-radius: 16px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}

.problem-card-help::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--white);
  border-radius: 1px;
  border-left: 1px solid rgb(228, 227, 239);
  border-bottom: 1px solid rgb(228, 227, 239);
  box-shadow: rgb(233, 232, 232) 0px 0px 50px;
  top: 12px;
  left: -6px;
  transform: rotate(45deg);
  z-index: -9;
}

.problem-card-help p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 20px;
  margin-bottom: 5px;
}

.problem-help:hover .problem-card-help {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Analysis Card Three */
.card-single-content.badge-orange p a {
  color: #6e6e6ea9;
}

.card-single-content.badge-orange .badge {
  border: 1px solid var(--text-orange-red);
  background: rgba(250, 84, 87, 0.05);
  color: var(--text-orange-red);
}

.card-inner-problems ol {
  margin-left: 10px;
}

.card-inner-problems .card {
  background: #fef6f6;
  box-shadow: 0px 4px 50px rgba(245, 247, 251, 0.25);
  border: 0;
}

.card-inner-problems .card h4 {
  font-size: 16px;
  color: var(--text-orange-red);
}

.card-inner-problems .card ol {
  padding-left: 15px;
  margin-bottom: 0;
}

.card-inner-problems .card ol li {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 24px;
}

.card-inner-problems .card ol li::marker {
  color: var(--black);
  font-weight: 500;
}

.problem-des-gray h4 {
  color: var(--dark) !important;
}

.problem-des-gray p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
}

.card-attr p a {
  color: #6e6e6ea9;
  font-size: 14px;
  font-weight: 400;
}

.card-actual-url p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 24px;
}

.card-actual-url p span {
  color: var(--dark);
  font-weight: 500;
  max-width: 110px;
  width: 100%;
  display: inline-block;
}

.card-actual-problem .card {
  background: #fef6f6;
}

/* Meta Tag End */

.progress-bar {
  border-radius: 50rem;
  transition-duration: 3s;
}

.progress-bar_primary {
  background: linear-gradient(90deg, #1e63b8 0.31%, #01b4bc 74.44%);
}

/* The side navigation menu */
.ideasidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 71px;
  left: 68px;
  overflow-x: hidden;
  white-space: nowrap;
  transition: 0.5s;
  background: #ffffff;
  border: 1px solid #e4e3ef;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.ideasidenav p {
  padding: 20px;
}

.slivenavHead span {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  padding-top: 10px;
  padding-left: 15px;
  display: block;
}

.ideasidenav .closebtn {
  position: absolute;
  top: -4px;
  right: 15px;
  font-size: 36px;
  margin-left: 50px;
  text-decoration: none;
  color: #d5d5dd;
  transition: all 0.3s;
}

.idea-singel-input {
  padding: 15px;
  padding-top: 7px;
}

.idea-singel-input label {
  color: var(--black);
  font-size: 12px;
  font-weight: 400;
}

.idea-singel-input input {
  color: #575757;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}

.ideasidenav .closebtn:hover {
  color: var(--text-gray);
}

.input-attachfile label {
  color: #c5c5c5;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 7px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  background: #ffffff;
  border: 1px dashed #d3d5d8;
  border-radius: 7px;
  padding: 7px;
}

.input-attachfile input {
  display: none;
}

.nav-ideabtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3px;
}

.nav-ideabtn button {
  background: #ffffff;
  border: 1px solid #d3d5d8;
  border-radius: 7px;
  color: #8f8f8f;
  font-size: 14px;
  font-weight: 400;
  width: 98px;
  transition: all 0.3s;
  height: 40px;
}

.nav-ideabtn button:hover,
.nav-ideabtn button.active {
  background: #5cae35;
  color: #ffffff;
}

.ideaSideForm .submitBtn {
  background: #1e63b8;
  backdrop-filter: blur(25px);
  border-radius: 15px;
  color: #ffffff;
  font-size: 14px;
  width: 100%;
  height: 30px;
  line-height: 30px;
  border: 0;
  outline: 0;
  margin-top: 20px;
}

/* analysis-meta-table */
.analysis-meta-table table thead {
  background: transparent;
}

.analysis-meta-table table {
  margin-bottom: 30px;
}

.analysis-meta-table table tbody tr {
  border-color: #fff !important;
  font-size: 13px;
  color: var(--text-gray);
}

.analysis-meta-table .table-headWidth {
  width: 235px;
}

.table-dangerColor {
  color: var(--text-orange-red);
}

.linkarr-color a {
  color: #ccccd3;
}

/* Range css   */

#slider22 .slider-selection {
  background: #81bfde;
}

#slider22 .slider-rangeHighlight {
  background: #f70616;
}

#slider22 .slider-rangeHighlight.category1 {
  background: #ff9900;
}

#slider22 .slider-rangeHighlight.category2 {
  background: #99cc00;
}

.analysis-range1 {
  max-width: 210px;
  width: 100%;
}

.analysis-range1 .slider.slider-horizontal .slider-track {
  height: 5px;
}

.analysis-range1 .slider-handle {
  height: 9px;
  width: 9px;
  background-color: var(--dark);
  top: 3px;
  background-image: none;
}

.analysis-range1 .tooltip {
  position: absolute;
  display: none;
}

.analysis-range1 #slider22 .slider-rangeHighlight.category1 {
  left: 0 !important;
  width: 33.33% !important;
  background: #50b77e;
}

.analysis-range1 #slider22 .slider-rangeHighlight.category2 {
  left: 33.33% !important;
  width: 33.33% !important;
  background: #f1a35b;
}

.analysis-range1 #slider22 .slider-rangeHighlight {
  left: 66.66% !important;
  width: 33.33% !important;
  background: #ea3035;
}

.analysis-range1 .slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -5px;
}

.analysis-range1 .slider-handle.min-slider-handle.round {
  display: none;
}

.analysis-rangeNum {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 141px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.analysis-rangeNum span {
  margin-top: 10px !important;
  margin-bottom: -5px;
}

.meta-graph-table thead {
  font-size: 13px;
  color: #222222;
  font-weight: 400;
}

/**************************** Analysis Modal Css **************************/

.analysis-profile-dialog {
  max-width: 660px;
  width: 100%;
}

.analysis-profile-dialog .modal-content {
  padding: 0px 10px;
}

.analysis-profile-header h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: var(--dark);
}

.analysis-footer-modal .btn_primary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 100px;
  font-weight: 500;
}

.analysis-footer-modal .analysis-ignor-btn {
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-gray);
}

.origin_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 24px;
  border-radius: 4px;
  background: var(--border-lime);
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-lime-deep);
  position: relative;
  z-index: 1;
  margin-top: -13px;
  margin-left: 7px;
  padding: 0px 5px;
}

.origin_btn::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background: var(--border-lime);
  transform: rotate(45deg);
  left: -4px;
  top: 7px;
  z-index: -1;
}

.analysis_copy_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 24px;
  background: #ffeeef;
  box-shadow: 0px 0px 50px #f5f7fb;
  border-radius: 4px;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-orange-red) !important;
  position: relative;
  z-index: 1;
  margin-top: -13px;
  padding: 5px;
  margin-right: 15px;
}

.analysis_copy_btn::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background: #ffeeef;
  transform: rotate(45deg);
  left: -4px;
  top: 7px;
  z-index: -1;
}

.analysis-peragraph a {
  color: var(--text-lime-deep);
}

.analysis-peragraph {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
}

.analysis-peragraph p {
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  color: var(--dark);
}

.analysis-mobile-link {
  display: none;
}

.analysis-profile-bd span {
  font-size: 15px;
}

.analysis-profile-bd {
  margin-left: 20px;
  position: relative;
}

.analysis-profile-bd::after {
  content: "";
  position: absolute;
  background: url(../assets/images/analysis/analysis-after.png) no-repeat scroll
    center center / contain;
  height: 80px;
  width: 20px;
  left: -10px;
  top: 65px;
}

.analysis-span-after {
  position: relative;
}

.analysis-span-after::after {
  content: "";
  position: absolute;
  height: 14px;
  width: 14px;
  background: var(--white);
  left: -31px;
  border: 1px solid var(--black);
  border-radius: 50%;
  bottom: 2px;
  z-index: 9999;
}

.analysis-profile-dialog2 {
  max-width: 536px;
  width: 100%;
  top: 0 !important;
}

.analysis-mai {
  display: flex;
  align-items: center;
  gap: 20px 15px;
  word-wrap: wrap;
}

.analysis-mail span {
  border: 1px solid var(--placeholder-gray);
  padding: 2px 22px 2px 11px;
  border-radius: 30px;
  position: relative;
  font-size: 14px;
  margin-right: 5px;
}

.analysis-single-mail {
  display: inline-flex;
  margin-bottom: 8px;
}

.analysis-mail p {
  position: absolute;
  right: 11px;
  top: 6px;
  cursor: pointer;
}

.analysis-profile-dialog2 .modal-content {
  padding: 0px 8px;
}

.analysis-mail-top > p {
  margin-right: 15px;
  color: var(--black);
}

.analysis-profile-bd2 {
  padding: 15px 25px;
}

.webpage-report {
  padding: 10px 5px;
  border-top: 1px solid #e0e0e2;
  border-bottom: 1px solid #e0e0e2;
  backdrop-filter: blur(25px);
  margin: 5px 0px;
}

.webpage-report span {
  font-weight: 500;
  font-size: 14px;
}

.mail-report-file {
  display: flex;
  align-items: center;
  gap: 101px;
  padding-top: 8px;
  margin-bottom: -19px;
}

.single-report-file {
  display: flex;
  align-items: center;
}

.mail-report-description p {
  margin-top: 15px;
}

.mail-report-description {
  font-size: 14px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e2;
}

.mail-report-description span {
  max-width: 354px !important;
  width: 100%;
  display: block;
}

.single-report-file img {
  height: 18px;
  width: 18px;
  margin: -15px 15px 0px 15px;
}

.analysis-mail-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.analysis-mail-footer .btn_primary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 100px;
}

.analysis-mail-footer a img {
  margin-left: 17px;
  height: 16px;
  width: 16px;
}

.analysis-mail-bottom {
  display: flex;
  justify-content: flex-start;
}

.analysis-profile-header .btn-close {
  opacity: 0.2;
}

#multiCollapseContent20 .analysis-robots-text {
  color: var(--primary) !important;
}

/* Footer area */
.footer-area {
  background: var(--white);
  box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.02);
  position: fixed;
  bottom: 0;
  right: 0;
  width: calc(100% - 68px);
  z-index: 1000;
  padding: 20px;
  z-index: 9999;
  transition: width 300ms;
}

.footer-area.small {
  width: calc(100% - 174px);
}

.footer-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo a {
  display: inline-block;
}

.footer-logo a img {
  max-width: 70px;
  object-fit: contain;
  filter: grayscale(100%);
}

.footer-menu nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu nav ul li {
  margin-left: 20px;
}

.footer-menu nav ul li a {
  display: inline-block;
  padding: 5px;
  color: #8f8f8f;
  font-size: 12px;
  text-decoration: none;
  font-weight: 400;
}

.card {
  --bs-card-inner-border-radius: 1rem;

  border: 1px solid #e2e0f4;
  box-shadow: 0px 4px 50px rgba(245, 247, 251, 0.25);
  border-radius: 1rem;
}

.loader__card .card-body {
  padding: 3rem;
}

.has__check {
  display: grid;
  grid-template-columns: 0.75rem 1fr;
  gap: 0.625rem;
}

.has__check::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f00c";
  color: #5cae35;
  font-size: 0.875rem;
  margin-top: 0.125rem;
}

.has__space {
  padding-left: 1.375rem;
}

.double__list {
  display: flex;
  gap: 5rem;
  justify-content: space-between;
}

.analysis-area .analysis-link-progress,
.analysis-area .card {
  height: 100%;
}

.analysis-area .card-body {
  padding: 1rem;
}

.performance-content {
  padding-bottom: 0;
}

.webqa__alert {
  padding-block: 0.5rem;
  font-size: 0.875rem;
  color: #7b9949;
  background: #ecf1e7;
  border: 1px solid #d7ecc2;
}

.webqa__alert .btn-close {
  padding-block: 0.75rem;
  background-size: 0.75em;
  opacity: 0.25;
}

.webqa__alert .btn-close:hover {
  opacity: 0.5;
}

.analysis-page .modal-backdrop {
  background-color: var(--white);
  opacity: 0.95;
}

/* circular progress bar */
.svg-circle {
  display: inline-flex;
  vertical-align: bottom;
  width: 72px;
  height: 72px;
}

.circular-progress-md .svg-circle {
  width: 96px;
  height: 96px;
}

.circular-progress-lg .svg-circle {
  width: 145px;
  height: 145px;
}

.svg-circle circle {
  stroke: rgba(250, 84, 87, 0.05);
  stroke-width: 10px;
  stroke-dasharray: 0;
  fill: var(--white);
}

.circular-progress-md .svg-circle circle,
.circular-progress-md .svg-circle .meter,
.circular-progress-lg .svg-circle circle,
.circular-progress-lg .svg-circle .meter {
  stroke-width: 5px;
}

.svg-circle .meter {
  stroke-width: 10px;
  stroke: #fa5457;
  fill: none;
  transition: stroke-dashoffset 2s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  transform: rotate(-90deg) scaleX(-1);
}

.svg-circle text {
  fill: var(--dark);
  font-weight: 900;
}

.progress-red circle {
  stroke: rgba(250, 84, 87, 0.05);
}

.progress-red-bg circle {
  fill: rgba(250, 84, 87, 0.05);
}

.progress-red .meter {
  stroke: #fa5457;
}

.progress-orange circle {
  stroke: rgba(252, 123, 16, 0.05);
}

.progress-orange-bg circle {
  fill: rgba(252, 123, 16, 0.05);
}

.progress-orange .meter {
  stroke: #fc7b10;
}

.progress-green circle {
  stroke: rgba(128, 174, 53, 0.05);
}

.progress-green-bg circle {
  fill: rgba(128, 174, 53, 0.05);
}

.progress-green .meter {
  stroke: #80ae35;
}

.progress-green-alt circle {
  stroke: #e9faf1;
}

.progress-green-alt-bg circle {
  fill: #e9faf1;
}

.progress-green-alt .meter {
  stroke: #64b240;
}

.progress-text-fill.progress-green text,
.progress-text-fill.progress-green-alt text {
  fill: #5cae35;
}

.progress-text-fill.progress-red text {
  fill: #fa5457;
}

.progress-text-fill.progress-orange text {
  fill: #eca059;
}

.showhide-btn {
  background-color: transparent;
  border: 0;
  color: #b7b7b7;
  transition: 300ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  font-size: 14px;
}

.showhide-btn svg {
  transition: 300ms;
}

.showhide-btn.collapsed .show,
.showhide-btn.collapsed .hide {
  transition: 300ms;
}

.showhide-btn.collapsed .hide {
  display: none;
}

.showhide-btn:not(.collapsed) .hide {
  display: inline;
}

.showhide-btn:not(.collapsed) .show {
  display: none;
}

.showhide-btn.collapsed svg {
  transform: rotate(180deg);
}

.responsive-nav-tabs {
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
}

.responsive-nav-tabs .nav-link {
  color: #8f8f8f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  font-size: 13px;
  border-radius: 5px !important;
  padding: 0.5rem 0.75rem !important;
}

.responsive-nav-tabs .nav-link svg {
  height: 16px;
  width: auto;
}

.responsive-nav-tabs .nav-link path {
  fill: #8f8f8f;
}

.responsive-nav-tabs .nav-link:hover,
.responsive-nav-tabs .nav-link.active {
  background-color: #f2f5f9;
  color: #1e63b8;
  border-radius: 5px;
}

.responsive-nav-tabs .nav-link:hover path,
.responsive-nav-tabs .nav-link.active path {
  fill: #1e63b8;
}

.performance-list-two {
  margin-bottom: 32px;
}

.analysis-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: border 300ms;
}

.analysis-card .card-header.rounded-lg {
  border-radius: 1rem;
}

.analysis-card .card-header .showhide-btn {
  flex-shrink: 0;
  background-color: #f7f8fa;
  width: 24px;
  height: 24px;
  border-radius: 50rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.analysis-card .card-header .showhide-btn svg {
  width: 10px;
  height: auto;
}

.analysis-card .card-header .showhide-btn path {
  stroke: #222222;
}

.analysis-score .title,
.analysis-score .text {
  font-size: 14px;
  font-weight: 400;
  color: #222222;
}

.analysis-score .text {
  color: #6e6e6e;
  margin-top: 16px;
  margin-bottom: 0;
}

.analysis-score .text a {
  text-decoration: none;
  color: #ccccd3;
}

.analysis-score .text a:hover {
  color: #222222;
}

/*********************************** Support Page CSS Start *************************************************/
/* .body_padding{
  padding-left:70px !important;
}
 
.body_padding .header_main{
  padding-left: 70px;
}
  */
.body_padding .inner_content {
  max-width: 100%;
  width: 100%;
}

.support_banner_area {
  background: url(../assets/images/support/support_banner.png) no-repeat scroll
    center center / cover;
  height: 100%;
  width: 100%;
  padding: 76px 0px;
  margin-top: 85px;
}

.support_banner_content {
  text-align: center;
}

.support_banner_content h1 {
  font-weight: 700;
  font-size: 30px;
  line-height: 70px;
  color: var(--white);
  margin-top: -30px;
}

.suppor_search {
  max-width: 593px;
  width: 100%;
  position: relative;
  margin: auto;
  padding: 0px 15px;
}

.suppor_search::after {
  content: "";
  position: absolute;
  background: url(../assets/images/search.png) no-repeat scroll center center /
    cover;
  height: 15px;
  width: 15px;
  right: 38px;
  top: 50%;
  transform: translateY(-50%);
}

.suppor_search input {
  height: 48px;
  max-width: 562px;
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 0px 28px;
}

.suppor_search input:focus {
  outline: none;
}

.genarel_header_items {
  display: flex;
  align-items: center;
  gap: 64px;
  margin: 0;
  padding: 0;
}

.genarel_header_items li {
  list-style: none;
}

.genarel_header_items li a {
  font-size: 15px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

.header_login {
  font-size: 15px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  margin-right: 27px;
}

.header_login:hover {
  color: var(--dark);
}

.login_modal {
  max-width: 385px;
  width: 100%;
}

.login_modal_form form input {
  width: 100%;
  border: 1px solid var(--border-gray);
  border-radius: 7px;
  margin-top: 15px;
  padding: 10px 15px 10px 20px;
  font-size: 16px;
}

.login_modal_form form input[type="submit"] {
  padding: 8px;
}

.login_modal .modal-header .btn-close {
  opacity: 0.2;
  background-size: 12px;
  margin-top: -38px;
  margin-right: -28px;
}

.login_modal .modal-header {
  border-bottom: none;
}

.logIn_modal_area .modal-content {
  padding: 5px 12px 15px 12px;
  box-sizing: border-box;
}

.logIn_modal_area .modal-header h1 {
  font-size: 24px !important;
  color: var(--dark) !important;
  font-weight: 500 !important;
}

.logIn_modal_area .modal-body p {
  font-size: 14px;
  margin-top: -30px;
  margin-bottom: 5px;
}

.login_input_password {
  position: relative;
}

.login_input_label {
  position: absolute;
  right: 15px;
  bottom: 11px;
}

.login_input_label img {
  height: 13px;
  width: 18px;
  cursor: pointer;
}

.login_modal_btn {
  display: block;
  margin-top: 25px;
  margin-bottom: 20px;
  font-weight: 400 !important;
}

.login_forgetPass {
  text-align: center;
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: var(--primary);
}

.loginOr {
  position: relative;
  margin: 25px 0px;
  z-index: 99;
}

.loginOr span {
  display: block;
  text-align: center;
  margin: auto;
  width: 40px;
  height: 20px;
  background: var(--white);
}

.loginOr::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: var(--border-dark);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -9;
}

.loginOr_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 100%;
  border: 1px solid var(--border-gray);
  border-radius: 7px;
  color: var(--text-gray);
  font-size: 14px;
  text-decoration: none;
  margin-top: 15px;
}

.loginOr_btn img {
  height: 22px;
  width: 22px;
  margin-right: 11px;
}

.signUp_modal_area {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
}

.signUp_modal_area span {
  color: var(--tex-gray);
}

.signUp_modal_area a {
  color: var(--primary);
}

/* login page */
.login-page .logIn_modal_area .modal-body p {
  margin-top: 0;
}

.login-page .login_modal .modal-header .btn-close {
  display: none;
}

.login-page .login_modal {
  max-width: 385px;
  width: 100%;
  margin: auto;
  padding: 12px 20px;
  box-sizing: border-box;
  background: var(--white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}

.login-page .logIn_modal_area {
  position: relative;
}

.login-page .logIn_modal_area::after {
  content: "";
  position: absolute;
  background: url(../assets/images/Login-sheap.png) no-repeat scroll center
    center / contain;
  height: 400px;
  max-width: 700px;
  width: 100%;
  bottom: -130px;
  left: 50%;
  transform: translateX(-44%);
  z-index: -9;
}

/* login page */

.header_menu_btn {
  display: none;
}

.support_card_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 33px;
  flex-wrap: wrap;
}

.single_support_card:hover {
  background: var(--white);
  border: 1px solid transparent;
  box-shadow: rgb(0 0 0 / 15%) 0px 2px 14px 0px;
  transition: 0.5s;
}

.single_support_card a {
  text-decoration: none;
}

.support_card_inner {
  display: flex;
  align-items: center;
}

.support-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  margin-left: 10px;
}

.support-icon img {
  height: 62px;
  max-width: 62px;
  object-fit: contain;
  margin-right: 20px;
  margin-top: -18px;
  filter: grayscale(100%);
}

.single_support_card {
  border: 1px solid #dee5ee;
  border-radius: 10px;
  max-width: 378px;
  width: 100%;
  padding: 13px 20px 5px 16px;
}

.support_card_content {
  margin-left: 10px;
}

.support_card_content h5 {
  color: #373737;
  font-weight: 500;
  size: 18px;
  line-height: 26px;
}

.support_card_content P {
  color: var(--text-gray);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  padding-right: 10px;
}

.support_main_area {
  position: relative;
  margin-top: -24px !important;
  margin-bottom: 97px;
}

.support_help-main {
  position: absolute;
  right: -70px;
  bottom: -10%;
}

.support_help_popup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 62px;
  width: 62px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.support_help_popup::after {
  content: "";
  position: absolute;
  height: 17px;
  width: 17px;
  background: var(--primary);
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%) rotate(45deg);
}

.support_help_popup h5 {
  color: var(--white);
  font-size: 21px;
  font-weight: 500;
  margin-top: -10px;
}

.support_help_popup span {
  font-size: 9px;
  color: var(--white);
  margin-top: -8px;
  font-weight: 500;
}

.trial-area {
  background: url(https://webqa.co/new-assets/assets/images/trial-banner.png) no-repeat scroll center
    center / cover;
  padding: 58px 0px;
  border-radius: 10px;
}

.trial-content {
  max-width: 629px;
  width: 100%;
  margin: auto;
  text-align: center;
  padding: 0px 5px;
}

.trial-content h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  color: #373737;
  padding-bottom: 30px;
}

.trial-content .btn_primary {
  font-size: 15px !important;
  padding: 5px 17px;
}

.g_footer_main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.single_footer_item {
  max-width: 200px;
  width: 100%;
  margin-bottom: 30px;
}

.footer_search_item h5 {
  font-weight: 500;
  font-size: 1rem;
  line-height: 38px;
  color: #373737;
}

.footer_search_item {
  text-align: center;
  max-width: 382px;
  width: 100%;
  margin-bottom: 30px;
}

.single_footer_item p {
  color: var(--text-gray);
  margin-top: 26px;
  margin-bottom: 32px;
}

.footer_social ul li {
  list-style: none;
}

.footer_social ul li a {
  color: var(--dark) !important;
  font-size: 22px;
}

.footer_social ul li a img {
  height: 16px;
  width: 22px;
  margin-top: -10px;
}

.footer_social ul {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.footer_list_items ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: grid;
  gap: 1rem;
  text-align: center;
}

.footer_list_items ul li a {
  text-decoration: none;
  color: #373737;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.footer_search_box {
  position: relative;
  margin-top: 25px;
}

.footer_search_item .footer_control {
  width: 100%;
  height: 50px;
  padding: 0px 25px;
  border-radius: 30px;
  outline: none;
  border: 1px solid var(--border-dark);
}

.footer_utils {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.copy_right_area p {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 38px;
}

.getting_main_area {
  margin-bottom: 87px;
}

.getting-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.getting-title h2 {
  color: #373737;
  font-weight: 500;
  font-size: 30px;
  line-height: 26px;
}

.support_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 32px;
  width: 154px;
  text-decoration: none;
  color: var(--text-gray);
  border-radius: 50px;
  border: 1px solid var(--border-gray);
  background: #f7f8fb;
  margin: 10px 0px;
  margin-left: 15px;
}

.support_btn img {
  height: 16px;
  width: 16px;
}

.support-link a {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}

.support-link img {
  height: 15px;
  width: 11px;
  object-fit: contain;
  transform: rotate(90deg);
  margin: 0px 7px;
}

.support-link span {
  font-size: 14px;
}

.single-getting-main {
  margin-top: 28px;
}

.single-getting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 33px;
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 13px;
}

.getting-left-content h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.getting-left-content h4 a {
  color: var(--primary);
  text-decoration: none;
}

.getting-left-content p {
  margin-bottom: 0px;
  font-size: 15px;
  color: var(--text-gray);
  padding-right: 30px;
}

.single-getting a .fa-angle-right {
  font-size: 20px !important;
}

.getting-recover-bg {
  background: var(--white);
  height: 100%;
  width: 100%;
  padding: 50px 10px;
  margin-top: 18px;
  margin-bottom: -60px;
  padding-bottom: 10px;
}

.getting-recover-main {
  max-width: 770px;
  width: 100%;
  margin: auto;
}

.recover-title h2 {
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  line-height: 26px;
  color: #373737;
}

.recover_btn_area {
  text-align: center;
  margin-top: 21px;
  margin-bottom: 27px;
}

.recover_btn_area a {
  border: 1px solid var(--border-gray);
  text-decoration: none;
  color: var(--text-gray);
  font-size: 12px;
  list-style: 16px;
  padding: 5px 11px;
  border-radius: 50px;
}

.recovering-los h6 {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  margin-top: 40px;
  margin-bottom: 17px;
}

.recovering-los ul {
  margin: 0;
  padding: 0;
}

.recovering-los ul li {
  list-style: none;
  margin-bottom: 35px;
}

.recovering-los ul li img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.recover-faq-area .accordion-button:not(.collapsed) {
  color: #373737;
  background-color: transparent;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
}

.recover-faq-area .accordion-item h2 button {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
}

.recover-faq-area .accordion-body p {
  color: #6e6e6e;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.recover-faq-area .accordion-item {
  padding: 5px 5px 5px 42px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid var(--border-gray);
  color: var();
}

.recover-faq-area .accordion-button::after {
  position: absolute;
  flex-shrink: 0;
  width: 15px !important;
  height: 15px !important;
  margin-left: auto;
  content: "";
  background-image: url(../assets/images/support/plus.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--bs-accordion-btn-icon-transition);
  left: -11px;
}

.recover-faq-area .accordion-button:not(.collapsed)::after {
  background-image: url(../assets/images/support/minus-sign.png);
}

.recover-faq-area .accordion {
  --bs-accordion-border-color: none;
}

.recover-faq-area h3 {
  font-size: 30px;
  line-height: 42px;
  font-weight: 400;
  color: #373737;
  padding-top: 40px;
  padding-bottom: 10px;
}

.helpfull-area {
  background: #f3f7fd;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
}

.helpfull-content {
  max-width: 270px;
  width: 100%;
  margin: auto;
}

.helpfull-area p {
  padding-top: 24px;
  padding-bottom: 10px;
}

.helpfull-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.helpfull-icon {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 40px;
}

.helpfull-icon img {
  height: 30px;
  width: 30px;
}

.helpfull-icon span {
  font-size: 12px;
}

.articels-area {
  margin-top: 50px;
}

.articels-area h2 {
  font-size: 30px;
  line-height: 42px;
  font-weight: 400;
  color: #373737;
  padding-bottom: 15px;
}

.articels-card {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
}

.single-articels {
  max-width: 236px;
  width: 100%;
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  padding: 16px 20px 24px 20px;
  margin-bottom: 40px !important;
}

.single-articels h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: var(--primary);
}

.articel-btn {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  text-decoration: none;
  border: 1px solid var(--border-gray);
  padding: 7px 20px;
  border-radius: 50px;
}

/***************************** Blog Page CSS Start ******************************
********************************************************************************/
.blog-wondering-mt {
  margin-top: 65px;
}

.blog-title h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 58px;
  text-align: center;
  color: var(--dark);
  padding: 120px 0 30px 0;
}

.blog-menu nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-menu nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-menu .blog-home {
  padding-right: 58px;
}

.blog-menu a img {
  padding-bottom: 4px;
}

.blog-menu nav > ul > li {
  list-style: none;
  padding-right: 58px;
}

.blog-menu ul li a {
  color: var(--tex-gray);
  text-decoration: none;
  font-weight: 400;
  line-height: 26px;
}

.blog-menu .dropdown-menu {
  --bs-dropdown-color: inherit;
}

.blog-menu .dropdown-item:focus,
.dropdown-item:hover {
  color: inherit;
}

.blog-menu {
  border-bottom: 2px solid var(--border-gray);
  padding-bottom: 8px;
  position: relative;
}

.blog-menu::after {
  content: " ";
  position: absolute;
  height: 2px;
  width: 100px;
  background: var(--border-dark);
  left: -100px;
  bottom: -2px;
}

.blog_menu_btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: none;
  padding-bottom: 4px;
  display: none;
  margin-left: 58px;
}

.blog_menu_btn > span {
  width: 25px;
  height: 2px;
  border-radius: 50rem;
  background-color: var(--dark);
}

.blog-highlight {
  padding: 25px 0 45px 0;
  display: flex;
  align-items: center;
}

.highlight-img {
  flex-basis: 45%;
  height: 326px;
}

.highlight-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.highlight-content {
  flex-basis: 55%;
  padding: 0 55px;
}

.post-category ul {
  display: flex;
  column-gap: 10px;
  padding-left: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.post-category ul li {
  list-style: none;
  padding: 5px 0;
}

.post-category ul li a {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #3a7cec;
  text-decoration: none;
  background: #eaf0fe;
  border-radius: 5px;
  padding: 6px 10px;
}

.highlight-content h3 {
  padding: 22px 0;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #373737;
}

.highlight-content p {
  padding-bottom: 22px;
  margin-bottom: 0;
}

.highlight-content a {
  line-height: 19px;
  text-decoration: none;
}

.blog-padding {
  padding-top: 0 !important;
}

.blog-list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-list-title h3 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #373737;
}

.blog-list-title a {
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  color: var(--tex-gray);
  padding: 8px 22px;
  border: 1px solid #8f8f8f;
  border-radius: 20px;
}

.blog-list-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 76px;
  grid-row-gap: 70px;
}

.blog-list-single-img {
  width: 100%;
  height: 208px;
  margin: 10px 0 15px 0;
}

.blog-list-single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.blog-list-single-heading h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: #373737;
  margin-bottom: 0;
  padding: 15px 0;
}

.blog-list-area {
  padding: 40px 0;
}

.blog-pagination {
  margin-top: 20px;
  padding-bottom: 20px;
}

.blog-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-pagination ul li {
  list-style: none;
}

.blog-pagination ul li a {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  color: var(--text-gray);
  height: 33px;
  width: 34px;
  border: 1px solid #d9d9d9;
  display: block;
  transition: 0.3s;
}

.blog-pagination ul li a .svg-inline--fa {
  margin-bottom: 0;
}

.blog-pagination ul li a.dots {
  border: inherit;
  width: 25px;
}

.blog-pagination ul li a.arrow {
  width: 30px;
  background: #f4f4f4;
  border: 1px solid #d5d5dd;
  border-radius: 2px 0px 0px 2px;
}

.blog-pagination ul li a.active,
.blog-pagination ul li a:hover {
  background: #0072e1;
  color: var(--white);
}

.post-page-top {
  padding-top: 120px;
}

.post-page-thump-headline {
  display: flex;
  padding: 45px 0 70px 0;
}

.post-page-thump {
  max-width: 229px;
  width: 100%;
  margin-right: 54px;
}

.post-page-headline {
  max-width: 738px;
  width: 100%;
}

.post-page-headline2 {
  margin: auto;
  padding: 45px 0 70px 0;
}

.post-page-headline h1 {
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  color: #373737;
}

.post-page-headline .post-category {
  padding: 17px 0;
}

.single-post-left-sidebar ul {
  margin: 0;
  padding: 0;
}

.single-post-left-sidebar ul .list-heading {
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  color: var(--dark);
}

.single-post-left-sidebar ul li {
  list-style: none;
  margin-bottom: 11px;
}

.single-post-left-sidebar ul li a {
  font-weight: 400;
  font-size: 13px;
  line-height: 10px;
  color: #687283;
  text-decoration: none;
  transition: 0.3s;
}

.single-post-left-sidebar ul li a:hover {
  color: var(--text-gray);
}

.single-post-content-main {
  display: flex;
}

.single-post-left-sidebar {
  max-width: 249px;
  width: 100%;
  margin-right: 54px;
  height: 500px;
  overflow-y: scroll;
  position: sticky;
  top: 65px;
}

.single-post-left-sidebar::-webkit-scrollbar {
  width: 5px;
}

.single-post-left-sidebar::-webkit-scrollbar-track {
  background: #efefef;
}

.single-post-left-sidebar::-webkit-scrollbar-thumb {
  background: #c9cacc;
  border-radius: 20px;
}

.single-post-content {
  max-width: 694px;
  width: 100%;
}

.single-post-content2 {
  margin: auto;
  max-width: 738px;
  padding-right: 44px;
}

.single-post-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-gray);
  margin-bottom: 35px;
}

.single-post-content h2 {
  font-weight: bold;
  font-size: 32px;
  line-height: 42px;
  color: #373737;
  margin-bottom: 0px;
  padding: 35px 0;
}

.single-post-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 35px;
}

.single-post-content .list ul li {
  list-style: none;
  display: flex;
  align-items: baseline;
  font-weight: 400;
  font-size: 18px;
  line-height: 46px;
  position: relative;
  padding-left: 25px;
}

.single-post-content .list ul li::after {
  position: absolute;
  content: "";
  left: 0;
  top: 20px;
  height: 9px;
  width: 9px;
  border-radius: 50%;
}

.single-post-content .blue-list ul li::after {
  background: #3a7cec;
}

.single-post-content .green-list ul li::after {
  background: var(--text-lime-deep);
}

.single-post-content .red-list ul li::after {
  background: var(--text-orange-red);
}

.single-post-content .list ul {
  margin: 0;
  padding: 0;
}

.single-post-content .list {
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 35px;
}

.single-post-content .blue-list {
  background: #ecf1f8;
}

.single-post-content .green-list {
  background: #f3f9f4;
  border: 1px solid var(--text-lime-deep);
}

.single-post-content .red-list {
  background: #fef6f6;
  border: 1px solid var(--text-orange-red);
}

.single-post-content .yellow-content {
  background: #faf5e5;
  border: 1px solid #dbd0ab;
  margin-top: 65px;
}

.single-post-content .yellow-content p:last-child {
  margin-bottom: 0;
}

.single-post-content p .span-color {
  color: #4a4a4a;
  font-weight: 600;
}

.single-post-content .list h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
  color: #373737;
}

.single-post-content p .link-border {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-gray);
  padding-bottom: 2px;
  text-decoration: none;
  border-bottom: 1px solid var(--text-gray);
}

.single-post-content p .link-border2 {
  color: #3a7cec;
  border-bottom: 1px solid #3a7cec;
}

.single-post-main {
  border-bottom: 1px solid var(--border-gray);
  padding-bottom: 40px;
}

.share-and-media {
  max-width: 694px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  flex-wrap: wrap;
}

.share-and-media h4 {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 20px;
  line-height: 42px;
  color: #373737;
}

.post-medias {
  display: flex;
  gap: 20px;
  align-items: baseline;
  flex-wrap: wrap;
}

.post-medias a {
  color: inherit;
  text-decoration: none;
  display: block;
  font-size: 25px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-gray);
  text-align: center;
  line-height: 61px;
  transition: 0.3s;
}

.post-medias a.active,
.post-medias a:hover {
  border-color: var(--text-orange-red);
}

.post-medias a.twiter {
  color: #1c9dee;
}

.post-medias a.instagram {
  color: var(--dark);
}

.post-medias a.facebook {
  color: #1774ee;
}

.post-medias a.tumblr {
  color: var(--dark);
}

.post-medias a.linkedin {
  color: #2664af;
}

.post-help-area .like-unlike {
  display: flex;
  column-gap: 72px;
}

.post-help-area .like-unlike p {
  font-size: 12px;
}

.post-help-area .like-unlike .like,
.post-help-area .like-unlike .unlike {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.post-help-area img {
  margin-bottom: 5px;
}

.blog-article-title h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 70px;
  color: var(--dark);
}

.blog-article-area {
  margin-top: 60px;
}

.single-post-content > h3 {
  display: flex;
  align-items: center;
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 35px;
}

.single-post-content > h3 span {
  height: 9px;
  width: 9px;
  border-radius: 50%;
  display: block;
  margin: 0 10px;
  background: var(--dark);
}

/***************************** Blog Page CSS End ******************************
********************************************************************************/

/***************************** Tools Root CSS start ******************************
********************************************************************************/
.tools-root-title {
  padding-top: 145px;
  padding-bottom: 50px;
}

.tools-root-title h1 {
  font-weight: 700;
  font-size: 50px;
  line-height: 58px;
  text-align: center;
  color: var(--dark);
  max-width: 723px;
  margin: auto;
  width: 100%;
  margin-bottom: 27px;
}

.tools-root-title h1 span {
  color: #1e63b8;
}

.tools-root-title p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: var(--text-gray);
  max-width: 841px;
  width: 100%;
  margin: auto;
}

.tools-root-search {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.tools-root-search .svg-inline--fa {
  height: 18px;
  color: #8f8f8f;
  position: absolute;
  top: 12px;
  right: 15px;
}

.tools-root-search input {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: var(--text-gray);
  background: var(--white);
  border: 1px solid #e2e0f4;
  border-radius: 5px;
  max-width: 173px;
  width: 100%;
  padding: 7px 30px 7px 20px;
}

.tools-root-search input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: #b7b7b7;
}

.tools-root-tab-area {
  display: flex;
  column-gap: 20px;
  padding-bottom: 25px;
}

.tools-root-tab {
  flex-basis: 210px;
}

.tools-root-tab .nav-link {
  width: 210px;
  text-align: left;
  padding: 16px 22px;
  background: linear-gradient(270.12deg, #f4f8ff -39.15%, #ffffff 99.92%);
  border: 2px solid #ffffff;
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 4px;
  color: #373737;
  position: relative;
}

.tools-root-tab .nav-link.active::after {
  position: absolute;
  content: "";
  right: 20px;
  top: 21px;
  width: 7px;
  height: 15px;
  background: url(../assets/images/tools-root/right-angle.svg) no-repeat scroll
    center center;
}

.tools-root-tab .nav-link.active {
  background: var(--primary);
}

.tools-root-content {
  padding: 29px;
  background: var(--white);
  box-shadow: 0px 0px 50px rgba(120, 143, 204, 0.05);
  border-radius: 8px;
  max-width: 100%;
  width: 100%;
}

.tools-root-tab-content-title {
  padding: 0 12px;
}

.tools-root-tab-content-title h2 {
  font-weight: 500;
  font-size: 30px;
  line-height: 60px;
  color: #373737;
}

.tools-root-tab-content-title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-gray);
}

.tools-root-items-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 38px;
  grid-row-gap: 32px;
}

.tools-root-item {
  display: flex;
  column-gap: 22px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: 0.3s;
}

.tools-root-item.active,
.tools-root-item:hover {
  background: #f5f7fb;
  border: 1px solid #e2e0f4;
}

.tools-root-item .root-icon {
  width: 35px;
  height: auto;
}

.tools-root-item .root-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  margin-top: 10px;
}

.tools-root-item a {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--primary);
  text-decoration: none;
  display: inline-block;
  padding-bottom: 5px;
}

.tools-root-item p {
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: var(--text-gray);
  margin-bottom: 0;
}

/***************************** Tools Root CSS End ******************************
********************************************************************************/

/***************************** Home Page CSS Start ******************************
********************************************************************************/
.home-title {
  padding-top: 85px;
  padding-bottom: 57px;
  max-width: 667px;
  margin: auto;
}

.home-title h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  text-align: center;
  color: var(--dark);
  padding-bottom: 27px;
}

.home-title h1 span {
  color: var(--primary);
}

.home-title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: var(--text-gray);
}

.home-search {
  max-width: 844px;
  width: 100%;
  margin: auto;
}

.home-search .footer_search_item {
  max-width: 100%;
  margin-bottom: 16px;
}

.home-search .footer_control {
  height: 68px;
  padding: 0px 49px;
  border-radius: 30px;
  outline: none;
  border: 2px solid var(--border-dark);
  font-weight: 400;
  font-size: 16px;
  color: var(--text-gray);
}

.home-search .footer_control::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ababab;
}

.home-search .footer_utils {
  right: 13px;
}

.home-search .footer_search_box {
  margin-top: 0;
}

.home-search .search-setting {
  text-align: right;
  margin-bottom: 10px;
}

.home-search .search-setting p {
  margin-bottom: 0;
  cursor: pointer;
  display: inline-block;
}

.home-search .search-setting .active .svg-inline--fa {
  rotate: 176deg;
}

.home-search .search-setting p .svg-inline--fa {
  margin: 0;
}

.home-setting-wrap {
  max-width: 904px;
  width: 100%;
  margin: auto;
}

.home-setting-area {
  background: var(--white);
  box-shadow: 0px 0px 50px rgba(120, 143, 204, 0.05);
  border-radius: 8px;
  padding-top: 5px;
  margin-bottom: 50px;
  display: none;
  max-width: max-content;
  margin-left: auto;
}

.home-setting-area.active {
  max-width: 100%;
}

.home-setting-area .alert {
  margin: 10px 20px;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--text-lime);
  padding: 10px 20px;
  background: var(--bg-lime);
  border: 1px solid var(--border-lime);
  border-radius: 8px;
}

.home-setting-area .btn-close {
  padding: 12px 20px;
  background: transparent url(../assets/images/home/crose.svg) center/1em auto
    no-repeat;
  background-size: inherit;
}

.home-setting-container {
  display: flex;
  width: 100%;
}

.home-setting-sidebar {
  max-width: 280px;
  min-width: 280px;
  width: 100%;
  padding-inline: 1rem;
}

.home-setting-tab-content {
  border-left: 1px solid var(--border-gray);
  display: none;
  transition: 0.5s;
  width: 0;
}

.home-setting-tab-content.active {
  display: block;
  width: 100%;
}

/* new */
.tav-menu-btn {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  background: transparent;
  transition: 0.5s;
}

.tav-menu-btn.active {
  transform: rotate(180deg);
}

.tav-menu-btn svg {
  display: block;
  margin-bottom: 0;
}

.home-setting-sidebar .form-switch-2 {
  display: flex;
  align-items: center;
  column-gap: 7px;
}

.home-setting-sidebar .form-switch-2 .form-check-switch {
  margin-bottom: 3px;
}

.home-setting-sidebar .form-switch {
  margin: 15px 10px;
}

.home-setting-sidebar .form-switch label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: var(--primary);
  padding-top: 4px;
}

.home-setting-sidebar .form-switch label .svg-inline--fa {
  margin: 0;
  font-size: 20px;
  color: var(--text-gray);
}

.home-setting-sidebar .form-check-switch {
  background-color: var(--white);
  border: 1px solid var(--text-orange-red);
  background-image: url("../assets/images/home/circle-off.png");
  box-shadow: none;
  width: 35px;
}

.home-setting-sidebar .form-check-switch:focus {
  background-image: url("../assets/images/home/circle-off.png");
  box-shadow: none;
}

.home-setting-sidebar .form-check-switch:checked {
  background-image: url("../assets/images/home/circle-on.png");
  background-color: var(--bg-lime);
  border: 1px solid var(--text-lime);
}

.home-setting-sidebar .accordion-button:not(.collapsed) {
  background-color: transparent;
}

.home-setting-sidebar .accordion-button {
  background-color: transparent;
  padding: 1rem 0.5rem;
  align-items: start;
  gap: 0.5rem;
}

.home-setting-sidebar .accordion-button::after {
  background-image: url(../assets/images/support/plus.png);
  height: 12px;
  width: 12px;
  background-size: contain;
  align-self: center;
}

.home-setting-sidebar .accordion-button:not(.collapsed)::after {
  background-image: url(../assets/images/support/minus-sign.png);
}

.home-setting-sidebar .accordion .form-check-input {
  margin-top: 0;
}

.home-setting-sidebar .accordion .form-check label {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: #373737;
}

.home-setting-sidebar .accordion .form-check {
  margin: 15px 0;
}

.accordion-btn {
  padding: 15px 0;
  border-top: 1px solid var(--border-gray);
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}

.home-setting-sidebar .accordion .accordion-body {
  padding: 0;
  padding-left: 10px;
  margin-bottom: 10px;
}

.home-setting-sidebar
  .accordion
  .accordion-body
  .form-check-input:checked[type="checkbox"] {
  border: 1px solid var(--border-gray);
}

.home-setting-sidebar .accordion .accordion-body div#v-pills-tab {
  width: 100%;
}

.home-setting-sidebar .accordion .accordion-body .nav-link {
  text-align: left;
  border-radius: 6px 0px 0px 6px;
  padding: 0;
  padding-left: 25px;
  margin-bottom: 10px;
}

.home-setting-sidebar .accordion .accordion-body .nav-link label {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.375;
  color: #687283;
  padding-block: 0.5rem;
}

.home-setting-sidebar .accordion .accordion-body .nav-link .form-check-input {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.5rem;
}

.home-setting-sidebar .accordion .accordion-body .nav-link.active label {
  color: var(--white);
}

.home-setting-sidebar .accordion .accordion-body .form-check {
  margin: 0;
}

.home-setting-sidebar .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #3a7cec;
}

.home-setting-sidebar .nav-pills .nav-link {
  transition: 0.3s;
  position: relative;
}

.home-setting-sidebar .nav-pills .nav-link:hover {
  background: #3a7cec;
}

.home-setting-sidebar .nav-pills .nav-link:hover label {
  color: #fff;
  cursor: pointer;
  width: 100%;
}

.home-setting-sidebar .nav-pills .nav-link.active {
  position: relative;
}

.home-setting-sidebar .nav-pills .nav-link::after {
  position: absolute;
  content: "";
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 15px;
  background: url(../assets/images/tools-root/right-angle.svg) no-repeat scroll
    center center;
}

.home-setting-sidebar .nav-pills .nav-link.active::after {
  position: absolute;
  content: "";
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 15px;
  background: url(../assets/images/tools-root/right-angle.svg) no-repeat scroll
    center center;
}

.home-setting-sidebar .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.home-setting-sidebar .accordion-btn .btn_primary {
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
}

.home-meta-content {
  width: 100%;
  height: 100%;
  padding: 50px 24px 24px 37px;
  padding-bottom: auto;
}

.home-meta-content .meta-content {
  width: 100%;
}

.home-meta-content .accor-content-button {
  margin-top: 50px;
  margin-right: 24px;
}

.home-content-button {
  margin-top: 24px;
  text-align: right;
}

.home-content-button input {
  margin: 0px 6px;
  padding: 3px 30px;
  font-weight: 500;
  font-size: 15px;
  line-height: 26px;
  text-align: center;
  color: var(--white);
}

.home-content-button .btn-cancel {
  background: transparent;
  color: var(--text-gray);
}

/***************************** Home Page CSS End ******************************
********************************************************************************/

/***************************** Tools Single Page CSS ************************/
.tools_top_area {
  display: flex;
  margin-top: 36px;
  margin-bottom: 50px;
}

.tools_sidebar {
  width: 246px;
  margin-right: 37px;
  background: var(--white);
  box-sizing: border-box;
  white-space: nowrap;
  border-radius: 10px;
  padding-bottom: 15px;
  box-shadow: 0px 0px 50px rgba(120, 143, 204, 0.05);
}

.tools_sidebar .accordion {
  border-radius: 10px;
  width: 246px;
}

.tools_sidebar .accordion-button:not(.collapsed) {
  color: #373737;
  background-color: transparent;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
}

.tools_sidebar .accordion-item h2 button {
  font-weight: 500;
  font-size: 16px;
  color: #373737;
  margin-left: -2px;
}

.tools_sidebar .accordion-body {
  margin-top: -20px;
}

.tools_sidebar .accordion-body a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 14px;
  width: 222px;
  color: #687283;
  padding: 5px 15px 3px 11px;
  text-decoration: none;
  margin-left: -14px;
  border-radius: 7px;
  margin-bottom: 3px;
}

.tools_sidebar .accordion-body .svg-inline--fa {
  display: none;
  height: 15px;
}

.tools_sidebar .accordion-body a:hover .svg-inline--fa {
  display: block;
}

.tools_sidebar .accordion-body a:hover {
  color: var(--white) !important;
  background: var(--primary);
  transition: 0.5s;
}

.tools_sidebar .accordion-item {
  border-bottom: 1px solid var(--border-gray);
  color: var();
}

.tools_sidebar .accordion-button::after {
  flex-shrink: 0;
  width: 12px !important;
  height: 12px !important;
  margin-left: auto;
  content: "";
  background-image: url(../assets/images/support/plus.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--bs-accordion-btn-icon-transition);
}

.tools_sidebar .accordion-button:not(.collapsed)::after {
  background-image: url(../assets/images/support/minus-sign.png);
}

.tools_sidebar .accordion {
  --bs-accordion-border-color: none;
}

.tools-last-accordion {
  border-bottom: none !important;
}

.tools_body {
  width: 100%;
  background: var(--white);
  padding: 36px;
  border-radius: 8px;
  box-shadow: 0px 0px 50px rgba(120, 143, 204, 0.05);
}

.tools_body_content {
  max-width: 778px;
  width: 100%;
}

.tools_body_content .footer_search_item {
  max-width: 100%;
}

.tools_body_content h1 {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #373737;
}

.tools_body_content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 67px;
}

.tools_body_content .footer_control {
  width: 100%;
  height: 68px;
  padding: 0px 25px;
  border-radius: 30px;
  background: #f7f8fb;
  outline: none;
  border: 2px solid var(--border-dark);
}

.tools_body_content .footer_utils {
  right: 13px;
}

.tools_body_content .dropdown {
  text-align: right;
  margin-top: -18px;
}

.tools_body_content .dropdown a {
  text-decoration: none;
}

.tools_body_content .dropdown span {
  font-size: 16px;
  line-height: 20px;
  color: #373737;
}

.test_result_area {
  padding: 15px 0px;
}

.test_result_area h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: var(--dark);
}

.test_result_table {
  background: var(--white);
  border: 1px solid #e2e0f4;
  box-shadow: 0px 0px 50px #f5f7fb;
  border-radius: 16px;
}

.download_result ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 35px 0px 0px;
}

.download_result ul li {
  list-style: none;
  margin-left: 30px;
  font-size: 14px;
  line-height: 18px;
  padding-top: 25px;
}

.download_result ul li button {
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
  color: #6e6e6e !important;
  font-weight: 400;
}

.download_result ul li button img {
  height: 16px;
  width: 16px;
  margin-right: 5px;
}

.result_data_body tr td {
  font-size: 14px;
  line-height: 18px;
  color: #6e6e6e;
  text-align: center;
  padding: 9px 12px;
  border-bottom: none;
  border-left: none;
}

.result_data_header tr th {
  text-align: center;
  background: #f1f5ff;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #222222;
  padding: 9px 12px;
  border: none;
}

.result_data_header tr {
  border: none;
}

.result_data_header tr th {
  border-top: 0px solid var(--border-gray);
  border-left: 0px solid var(--border-gray);
  border-top: 0px solid var(--border-gray);
  border-right: 1px solid var(--border-gray);
}

.result_1st_tr {
  border: none;
}

.result_1st_tr td {
  border-top: 0px solid var(--border-gray);
  border-left: 0px solid var(--border-gray);
  border-top: 0px solid var(--border-gray);
  border-right: 1px solid var(--border-gray);
}

.result_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result_header input {
  width: 95%;
  border: none;
  background: transparent;
}

.result_header img {
  height: 14px;
  width: 14px;
}

.result_data_url {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
}

.result_data_url img {
  height: 12px;
  width: 12px;
  margin-left: 10px;
}

.result_data_body .exit_data span {
  margin-left: 70px;
}

.result_data_body .result_span span {
  color: var(--primary);
  text-decoration: underline;
  text-align: center;
}

.result_data_body td p {
  margin-bottom: 0px;
}

.result_pass {
  color: #05954f;
}

.result_fail {
  color: #a93032;
}

.main-pagination2 {
  padding: 15px 20px 10px 10px;
}

.result_go .btn-outline-gray {
  padding: 4px 7px;
  font-size: 12px;
  width: 51px;
  text-align: left;
}

.tools_meta_content {
  display: none;
  padding: 15px;
}

.tools_meta_inner_content {
  text-align: left;
}

.tools_meta_content .accor-content-button {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-right: 0px;
}

.test_criteria {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  color: var(--dark);
  margin-bottom: -50px !important;
  cursor: pointer;
}

.test_criteria .svg-inline--fa {
  margin-bottom: -1px;
  margin-right: 18px;
  margin-left: 8px;
}

.test_criteria.active .svg-inline--fa {
  rotate: 180deg;
}

.main_tools_meta_description {
  margin-top: 80px;
}

.main_tools_meta_description .single-post-content p {
  font-size: 16px;
}

.main_tools_meta_description .tools_des_fastheading {
  margin-top: -40px;
}

.tools_video_popup {
  padding-top: 40px;
  padding-bottom: 15px;
}

.tools_video_img {
  position: relative;
}

.test-popup-link {
  position: absolute;
  height: 60px !important;
  width: 60px !important;
  cursor: pointer;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.tools_link_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 36px;
  position: relative;
  border: none;
  border-radius: 10px;
  background: #484a4e;
  margin-bottom: 50px;
}

.tools_link_btn span {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

.tools_link_btn .svg-inline--fa {
  transform: rotateX(-180deg);
  height: 20px;
  width: 20px;
  margin-bottom: -6px;
  color: #8c95a6;
}

.tools_link_btn p {
  margin-bottom: 0px;
  color: var(--white);
  opacity: 0.8;
  text-align: left;
  padding-right: 15px;
}

.pera_padding {
  margin-bottom: 17px !important;
}

.single-post-content h4 {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
}

.tools-des-heading {
  padding-bottom: 0px !important;
}

.tools_accordion_area {
  margin-top: 127px !important;
  padding-top: 40px;
  padding-bottom: 35px;
  border-top: 1px solid var(--border-gray);
}

.tools_accordion_area h2 {
  padding: 0 !important;
}

.main_tools_meta_description ul {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}

.main_tools_meta_description ul li {
  list-style: none;
  position: relative;
}

.main_tools_meta_description ul li::after {
  content: "";
  position: absolute;
  left: -13px;
  top: 9px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: var(--text-gray);
}

/**************************** UI-Element CSS  ***************************/
.element-main-area {
  display: none;
  margin-top: 23px;
  background: var(--white);
  padding: 10px 35px 65px 35px;
  border: 1px solid var(--border-gray);
  box-shadow: 0px 0px 50px #f5f7fb;
  border-radius: 16px;
  margin-bottom: 30px;
}

.element-cls {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  padding-top: 8px;
  margin-bottom: -20px;
  margin-right: -5px;
}

.element-cls .form-check-label {
  color: var(--primary);
}

.element-cls span {
  cursor: pointer;
  opacity: 0.4;
}

.element-check-title {
  width: 174px;
  margin-left: -10px;
  padding: 3px 5px !important;
  background: #f5f7fb;
  display: inline-block;
  border-radius: 50px;
  margin-bottom: 15px;
  padding-left: 7px !important;
  margin-top: 20px;
}

.over_check_title {
  max-width: 380px;
  width: 100%;
}

.over_check_title2 {
  max-width: 250px;
  width: 100%;
}

.single-element-content label {
  font-size: 13px;
  font-weight: 400;
}

.element-check-title label {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.inner-element-content label {
  padding-bottom: 3px;
}

.element_main_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 35px;
}

.element-main-single {
  display: flex;
  justify-content: flex-start;
  gap: 15px 50px;
  flex-wrap: wrap;
}

.element-select {
  text-align: right;
  margin-top: -20px;
  margin-right: -10px;
}

.element-select .btn {
  padding: 3px 15px;
  font-size: 14px;
  font-weight: 500;
}

/*************************************** Project Page CSS ****************************************/
.project_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 11px;
  padding-top: 5px;
}

.project_title .btn {
  font-size: 14px !important;
  padding: 4px 15px;
}

.project_title h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

.project_susscess .success-section {
  padding: 0px 24px;
  margin-bottom: 16px;
}

.project_susscess p {
  color: #7b9949 !important;
}

.project_susscess .success-section span {
  margin-bottom: -10px !important;
  cursor: pointer;
}

.project_action {
  width: 170px;
}

.project_table_area {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  height: 100vh;
  margin-bottom: 70px;
}

.project_name {
  display: flex;
  align-items: center;
  padding-left: 27px !important;
}

.p_name_pl {
  padding-left: 27px !important;
}

.project_name p {
  margin-bottom: 0;
}

.project_name img {
  height: 22px;
  width: 20px;
  margin-right: 6px;
}

.project_action img {
  margin-right: 29px;
  height: 14px;
  width: 14px;
  cursor: pointer;
}

.project_row td {
  padding: 11px;
}

.project_table_header th {
  padding: 20px 11px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

.project_table_td td {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--text-gray);
}

.add_project_area {
  padding-bottom: 50px;
}

.add_project_area .is-valid {
  border-color: var(--border-dark);
}

.project-single-input {
  margin-top: 3px;
}

.add_project_area .project-single-input span {
  font-size: 14px;
  color: #3b8f3f;
}

.project-single-input label {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 10px;
  color: var(--dark);
  margin-top: 23px;
}

.project-single-input {
  margin-bottom: 15px;
}

.project_section .form-control.is-valid,
.was-validated .form-control:valid {
  background-size: 16px !important;
}

.project_section .form-control {
  font-size: 14px !important;
  font-weight: 400;
}

.project_section .form-control {
  padding: 9px 17px;
  color: var(--text-gray);
}

.project_section .form-body > p {
  font-size: 14px;
  padding-bottom: 11px;
  padding-top: 7px;
}

.project_section .form-body textarea {
  position: relative;
  width: 100%;
  height: 287px;
  color: var(--text-gray);
  padding: 12px 20px;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  line-height: 26px;
}

.project_section .form-body textarea::-webkit-scrollbar {
  width: 0px;
}

.project_section .form-body textarea::-webkit-scrollbar-track {
  background: #efefef;
}

.project_section .form-body textarea::-webkit-scrollbar-thumb {
  background: #c9cacc;
  border-radius: 20px;
}

.sitemap_area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sitemap_area .sitemap_btn {
  border: 1px solid var(--border-gray);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  padding: 3px 16px;
  background: transparent;
  border-radius: 10px;
  margin-top: 25px !important;
}

.main_sitemap_area ol {
  margin-bottom: 35px;
}

.main_sitemap_area ol li {
  position: relative;
  font-size: 14px;
  margin: 9px 0px;
  margin-left: -6px;
  max-width: 450px;
  width: 100%;
  padding: 3px 3px 3px 5px;
}

.main_sitemap_area ol li .sitemap_input_btn {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 6px;
  top: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
}

.main_sitemap_area ol li:hover {
  background: #f8f8fa;
  transition: 0.5s;
}

.main_sitemap_area ol li:hover .sitemap_input_btn {
  opacity: 0.3;
  transition: 0.5s;
}

.project_textarea {
  position: relative;
}

.project_textarea:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  height: 92%;
  width: 35px;
  background: var(--white);
  opacity: 0.6;
  z-index: 9;
}

.project_primary_btn {
  text-decoration: none;
  background: var(--primary);
  color: var(--white);
  font-weight: 500;
  padding: 4px 28px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 17px !important;
  display: inline-block;
}

.project_primary_btn:hover {
  color: var(--white);
}

.failed_section {
  border: 1px solid #fcd1d3;
  border-radius: 8px;
  background: #f6e1e2;
}

.failed_section p {
  color: #a85658 !important;
}

.failed_section span {
  color: #a85658 !important;
}

.project-single-input .is-valid {
  background-image: url(../assets/images/project/valid.png);
}

.project-single-input .is-invalid {
  background-image: url(../assets/images/project/invalid.png);
  background-size: 12px;
}

.invalid_sitemapUrl {
  color: var(--text-orange-red) !important;
}

.project_url_data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f8fa !important;
  padding: 7px 20px 7px 15px !important;
  margin-bottom: 10px;
  border: none;
}

.project_url_data:hover {
  transition: 0.5s;
  background: #e2e0f4 !important;
}

.project_urlAction img {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin-left: 20px;
  margin-right: 10px;
}

.project_url_searchArea {
  padding-top: 40px;
  border-top: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.project_url_searchArea .project-single-input {
  width: calc(100% - 130px);
}

.project_url_searchArea .btn {
  padding: 2px 26px;
  border-radius: 10px;
  margin-top: 27px !important;
}

.project_url_title {
  font-size: 14px !important;
  font-weight: 500;
  line-height: 18px;
  padding-top: 14px;
}

.project_url_pagination {
  max-width: 430px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.project_url_pagination p {
  font-size: 14px;
  color: var(--text-gray);
}

.project_url_pagination ul {
  display: flex;
  align-items: center;
}

.project_url_pagination ul li {
  list-style: none;
  margin: 0px 10px;
}

.project_url_pagination ul li a {
  text-decoration: none;
  color: var(--text-gray);
  font-size: 14px;
}

.project_url_pagination .svg-inline--fa {
  margin-bottom: 0px !important;
}

.project_url_pagination .active_pagi {
  color: var(--primary) !important;
}

.url_saveBtn {
  margin-top: 35px;
  margin-bottom: 10px;
  border: none;
  outline: none;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 4px 45px;
  border-radius: 10px;
}

/*email modal*/
.email-modal textarea {
  width: 100%;
  height: 100%;
  border: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  min-height: 100px;
  outline: 0;
  color: #6e6e6e;
  font-size: 15px;
}

.email-subject {
  outline: 0;
  border: 0;
  font-size: 15px;
  color: #6e6e6e;
  width: 100%;
}

.analysis-mail-to {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.analysis-mail-to p {
  margin: 0;
}

.analysis-mail-to input {
  margin-left: 10px;
  border: 0;
  border-bottom: 1px solid #ccc;
  width: 100%;
  font-size: 14px;
}

/***************************** Dashboard Page CSS ************************/
.dashboard_top_items_main {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 50px 19px;
}

.single_dashboard_card_main {
  grid-column: span 4;
}

.add_Widget_area_main {
  grid-column: span 4;
}

.add_Widget_area_main > p {
  height: 17px;
  margin-bottom: 0px;
}

.single_dashboard_card {
  position: relative;
  padding-bottom: 19px;
}

.single_dashboard_card_main > p {
  color: #6e6e6e;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
  padding-left: 15px;
  height: 20px;
}

.single_dashboard_card_main > p span {
  color: #4a4a4a;
}

.single_dashboard_card .dashboard_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px 16px 0px 0px;
  border-bottom: 1px solid #e2e0f4;
  background: #f3f8ff;
  box-shadow: 0px 0px 50px 0px #f5f7fb;
  padding: 9px 15px;
}

.single_dashboard_card .dashboard_title .text_16_bld {
  padding-bottom: 0;
  margin-bottom: 0 !important;
  font-weight: 500;
  color: #222;
}

.single_dashboard_card {
  border: 1px solid #e2e0f4;
  background: #fff;
  border-radius: 16px;
  min-height: 384px;
  height: 100%;
}

.single_dashboard_card .dropdown p {
  margin-bottom: 0px;
}

.dashboard_title .dropdown [data-bs-toggle="dropdown"] {
  height: 1rem;
  width: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.125rem;
  color: #6e6e6e;
}

.deshboard_inner_description {
  padding: 13px 0px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0px 15px;
}

.deshboard_inner_description p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6e6e6e;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  margin-bottom: 0px;
}

.deshboard_inner_description .text_14_bld {
  color: #222;
  font-weight: 500;
}

.deshboard_inner_description.border_bottom {
  border-bottom: 1px solid #e2e0f4;
}

.deshboard_inner_description p span {
  color: #4a4a4a;
}

.deshboard_inner_description p .danger {
  color: #ca5255;
}

.deshboard_inner_description p .success {
  color: #80ae35;
}

.inner_dashboard_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 6px 17px 10px 10px;
  border-top: 1px solid #e2e0f4;
  width: 100%;
  text-align: right;
}

.inner_dashboard_footer a {
  text-decoration: none;
  color: #1e63b8;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.broken_top_content {
  text-align: center;
}

.broken_top_content {
  border-bottom: 1px solid #e2e0f4;
  margin: 0px 15px;
}

.broken_top_content h3 {
  text-align: center;
  color: #222;
  font-size: 40px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  padding-bottom: 3px;
  margin-top: 16px;
}

.broken_top_content p {
  color: #6e6e6e;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  padding-bottom: 16px;
}

.broken_bottom_content p {
  padding-top: 5px;
}

.common_tab .nav-tabs .nav-link.active::before {
  position: inherit;
}

.dashboard_sitemap_content .nav-tabs {
  max-width: 272px;
  width: 100%;
  margin: 15px auto;
}

.dashboard_sitemap_content .nav {
  justify-content: center;
  flex-wrap: nowrap;
}

.common_tab .nav-tabs {
  border-radius: 20px;
  border-bottom: none;
  background: #edf0f5;
}

.common_tab .nav-tabs .nav-link.active {
  color: #fff;
  border-radius: 20px;
}

.common_tab .nav-link {
  color: #6e6e6e;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 5px 27px;
  border-radius: 20px;
}

.roboto_url {
  border-bottom: 1px solid #e2e0f4;
  margin-left: 15px;
  margin-right: 15px;
}

.roboto_url p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0px;
  padding: 2px 0px 16px 0px;
  color: #373737;
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
}

.roboto_url p span img {
  height: 12px;
}

.dashboard_sitemap_textarea {
  padding: 0px 15px;
}

.dashboard_sitemap_textarea p {
  color: #373737;
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  margin-bottom: 4px;
  padding-top: 15px;
}

.dashboard_sitemap_textarea textarea {
  width: 100%;
  padding: 0px 15px;
  height: 105px;
  color: #6e6e6ebd;
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: 25px;
  outline: 0;
  border-radius: 7px;
  border: 1px solid #d3d5d8;
  background: #fff;
  scrollbar-width: thin;
}

/* Firefox */
.dashboard_sitemap_textarea textarea {
  scrollbar-width: thin;
  scrollbar-color: #c9cacc #dfe9eb;
}

/* Chrome, Edge and Safari */
.dashboard_sitemap_textarea textarea::-webkit-scrollbar {
  height: 5%;
  width: 5px;
}

.dashboard_sitemap_textarea textarea::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #dfe9eb;
}

.dashboard_sitemap_textarea textarea::-webkit-scrollbar-track:active {
  background-color: #b8c0c2;
}

.dashboard_sitemap_textarea textarea::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #c9cacc;
}

.dashboard_graph_content .nav-tabs {
  max-width: 348px;
  width: 100%;
  margin: 20px auto;
}

.dashboard_graph_content .nav {
  justify-content: center;
  flex-wrap: nowrap;
}

.dashboard_graph_content .nav-link {
  padding: 5px 24px;
}

.dashboard_graph_title_content .text_12,
.dashboard_graph_description_content .text_12,
.dashboard_graph_images_content .text_12,
.dashboard_graph_url_content .text_12 {
  text-align: right;
  color: #6e6e6e;
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  margin-bottom: 7px;
  padding-right: 15px;
}

.security_table .table thead tr .border_none {
  border-bottom: 1px solid transparent;
}

.security_table .table thead tr th,
.html_best_practice .table thead tr th {
  color: #8f8f8f;
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  padding: 9px;
}

.security_table .table tbody tr td,
.html_best_practice .table tbody tr td {
  color: #6e6e6e;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  padding: 5px 12px;
}

.security_table .table thead tr .gray-bg,
.html_best_practice .table thead tr .gray-bg {
  height: 100%;
  width: 100%;
  background: #f2f2f3;
  box-shadow: 0px 0px 50px 0px #f5f7fb;
}

.html_best_practice .table tbody tr .gray-bg {
  height: 100%;
  width: 100%;
  background: #f2f2f3;
  box-shadow: 0px 0px 50px 0px #f5f7fb;
  color: #8f8f8f;
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  padding: 9px;
}

/* .dashboard_middle_items_main{
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 50px 19px;
}
 */
/* .google_page{
  grid-column: span 4;
}
 */
.Lighthouse_Score {
  grid-column: span 8;
}

.google_page_content {
  padding: 17px 15px;
}

.google_page_top_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.google_page_single_item {
  display: flex;
  align-items: center;
  /* justify-content: flex-end; */
  gap: 28px;
  border-radius: 8px;
  background: #f6faff;
  padding: 30px 15px;
}

.google_page_single_item h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.google_page_single_item .text_yellow {
  color: #fc7b10;
}

.google_page_single_item .text_danger {
  color: #ca5255;
}

.google_page_single_item p {
  margin-bottom: 0px;
  color: #4a4a4a;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.google_page_single_item p span {
  font-weight: 700;
}

.desk_mobile_tab .nav-tabs {
  max-width: 260px;
  width: 100%;
}

.desk_mobile_tab .nav {
  justify-content: center;
  flex-wrap: nowrap;
}

.google_page_tab_content .nav-tabs {
  margin: 10px auto;
}

.desk_mobile_tab .nav-link {
  padding: 5px 42px;
}

.google_inner_content {
  padding: 0px 15px;
}

.single_google_line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0px;
  border-bottom: 1px solid #e9e9e9;
}

.google_inner_content .single_google_line:last-child {
  border-bottom: 1px solid transparent;
}

.single_google_line p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 0px;
  color: #8f8f8f;
  font-size: 13px;
  font-style: normal;
  font-weight: 450;
  line-height: 18px;
}

.single_google_line p img {
  max-width: 12px;
}

.single_google_line span {
  color: #4a4a4a;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
}

.Lighthouse_tab_content .nav-tabs {
  margin: 18px auto;
}

.Lighthouse_table_content .table thead tr th {
  color: #4a4a4a;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 8px;
}

.Lighthouse_table_content .table thead tr .gray-bg {
  height: 100%;
  background: #f1f1f1;
  box-shadow: 0px 0px 50px 0px #f5f7fb;
}

.Lighthouse_table_content .table tbody tr td {
  color: #4a4a4a;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  padding: 5px 12px;
  min-width: 80px;
}

.Lighthouse_table_content .table tbody tr .border_bottom {
  border-bottom: 1px solid transparent;
}

.Lighthouse_table_content .table tbody tr td p {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  gap: 7px;
  color: #8f8f8f;
  font-size: 13px;
  font-style: normal;
  font-weight: 450;
  line-height: 18px;
}

.Lighthouse_table_content .table tbody tr .success {
  color: #5cae35;
}

.Lighthouse_table_content .table tbody tr .orange {
  color: #fc7b10;
}

.Lighthouse_table_content .table tbody tr .danger {
  color: #ca5255;
}

.Lighthouse_table_content .table tbody tr td p img {
  max-width: 12px;
}

.core_tab_content .nav-tabs {
  margin: 32px auto;
}

.roboto_txt_content .roboto_url {
  padding-top: 20px;
  padding-bottom: 28px;
  margin-bottom: 10px;
}

.dashboard_bottom_main {
  padding-top: 60px;
}

.dashboard_image_content .deshboard_inner_description p {
  padding: 4px 0;
}

.mobile_friendly_content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 13px 15px;
}

.single_mobile_friendly {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #f6faff;
}

.single_mobile_friendly p {
  color: #4a4a4a;
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  margin-bottom: 0px;
}

.single_mobile_friendly h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
}

.single_mobile_friendly .text_orange {
  color: #fc7b10;
}

.single_mobile_friendly .text_success {
  color: #5cae35;
}

.single_mobile_friendly .text_danger {
  color: #ca5255;
}

.http_status_content .nav-tabs {
  max-width: 341px;
  width: 100%;
  margin: 20px auto;
}

.http_status_content .nav {
  justify-content: center;
  flex-wrap: nowrap;
}

.http_status_content .nav-link {
  padding: 5px 18px;
  padding-bottom: 6px;
}

.dashboard_submit_content {
  padding: 0px 15px;
}

.dashboard_submit_content p {
  color: #6e6e6e;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  padding-top: 22px;
  margin-bottom: 13px;
  max-width: 269px;
}

.dashboard_submit_content textarea {
  width: 100%;
  height: 166px;
  border-radius: 8px;
  border: 1px solid #e2e6ec;
  background: #f6faff;
  outline: none;
  color: #6e6e6e;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
}

.dashboard_submit_content span {
  display: block;
  text-align: right;
  color: #6e6e6e;
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
}

.dasboard_submit_btn {
  display: flex;
  justify-content: center;
}

.dashboard_submit_content button {
  color: #1e63b8;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 20px;
  background: #edf0f5;
  padding: 5px 14px;
  border: none;
}

.dashboard_recheck_area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  padding: 10px 0px 25px 0px;
}

.dashboard_recheck_area .das_rec_btn {
  color: #6e6e6e;
  text-align: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid #dcdcdc;
  background: #f0f0f0;
  backdrop-filter: blur(25px);
  padding: 6px 23px;
}

.dashboard_recheck_area p {
  margin-bottom: 0px;
  color: #6e6e6e;
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
}

.dashboard_recheck_area .progress {
  height: 3px;
  max-width: 300px;
  width: 100%;
}

.dashboard-rechecking-progress {
  background: linear-gradient(90deg, #1e63b8 0.31%, #01b4bc 74.44%);
  border-radius: 10px;
}

.blank_sitemap_content {
  padding-top: 37px;
  padding-bottom: 32px;
  text-align: center;
}

.blank_sitemap_content img {
  max-width: 42px;
  height: 42px;
}

.blank_sitemap_content p {
  max-width: 199px;
  width: 100%;
  margin: auto;
  padding-top: 10px;
  color: #6e6e6e;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
}

.add_sitemap_form form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0px 15px;
}

.add_sitemap_form form input {
  border-radius: 7px;
  border: 1px solid #dcdcdc;
  background: #fff;
  padding: 11px 17px;
  color: #4a4a4a;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  max-width: 280px;
  width: 100%;
}

.add_sitemap_form form input::placeholder {
  color: #c1c1c1;
}

.add_sitemap_form form button {
  border-radius: 20px;
  background: #edf0f5;
  color: #1e63b8;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 5px 11px;
  border: none;
}

.add_Widget_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9px;
  height: 384px;
  width: 100%;
  background: #f7f8fa;
  border-radius: 16px;
  border: 2px dashed #e2e0f4;
  margin-top: 10px;
}

.add_Widget_area img {
  max-width: 61px;
  width: 100%;
  height: 61px;
  object-fit: cover;
}

.add_Widget_area span {
  color: #6e6e6e;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
}

.add_Widget_area .btn {
  border-radius: 50%;
  border: none;
}

.dashboard_offcanvas .offcanvas {
  max-width: 424px;
  width: 100%;
  z-index: 9999999;
}

.dashboard_offcanvas .offcanvas-body {
  padding: 0px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.offcanvas-body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.offcanvas-body {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.dashboard_offcanvas .offcanvas-header {
  padding: 16px 22px 16px 34px;
  background: #1e63b8;
}

.btn-close {
  width: 8px;
  height: 8px;
  padding: 0px;
  background: transparent url("../assets/images/crose-white.png") center/1em
    auto no-repeat;
  opacity: 1;
  background-size: 50%;
}

.dashboard_offcanvas .offcanvas-title {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
}

.offcanvas_item_title {
  padding-left: 34px;
  margin-bottom: 5px;
  color: #222;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.single_offcanvas_items {
  padding: 20px 0px;
  border-bottom: 1px solid #e2e0f4;
}

.dashboard_offcanvas_content .single_offcanvas_items:last-child {
  border-bottom: 0px solid #e2e0f4;
}

.single_offcanvas_items ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

.single_offcanvas_items ul li {
  padding: 4px 24px 4px 34px;
  list-style: none;
  color: #6e6e6e;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  cursor: pointer;
}

.single_offcanvas_items ul li:hover {
  background: #f0f5fc;
  color: #222;
  font-weight: 500;
}

.single_offcanvas_items ul li:hover .add_widget_btn {
  visibility: visible;
}

.add_widget_btn {
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid #1355a5;
  color: #222;
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  padding: 5px 34px;
  visibility: hidden;
}

.page_speed_content {
  max-width: 245px;
  width: 100%;
  margin: auto;
  padding-top: 117px;
}

.page_speed_content .progress {
  --bs-progress-height: 10px;
}

.dashboard-page-speed-progress {
  background: linear-gradient(90deg, #1e63b8 0.31%, #01b4bc 74.44%);
  border-radius: 10px;
}

.page_speed_content span {
  display: block;
  text-align: center;
  color: #222;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 8px 0px 23px 0px;
}

.page_speed_content p {
  color: #6e6e6e;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  margin-bottom: 0px;
}

.broken_links_content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90%;
}

.broken_links_content img {
  width: 40px;
}

.dashboard_preparing_content {
  max-width: 398px;
  width: 100%;
  margin: auto;
  padding-top: 80px;
}

.dashboard_preparing_content .progress {
  --bs-progress-height: 10px;
  width: calc(100% - 50px);
}

.dashboard-preparing-progress {
  background: linear-gradient(90deg, #1e63b8 0.31%, #01b4bc 74.44%);
  border-radius: 10px;
}

.dashboard_preparing {
  padding-bottom: 40px;
}

.dashboard_preparing p {
  text-align: right;
  margin-top: -20px;
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

.dashboard_preparing_content h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: center;
}

.dashboard_preparing_content > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 10px;
  color: #222;
}

.dashboard_preparing_content .loading_dashboard {
  color: #1355a5;
}

.preparing_list_item {
  height: 400px;
  overflow-y: scroll;
  padding: 0px 30px 0px 10px;
}

/* Firefox */
.preparing_list_item {
  scrollbar-width: thin;
  scrollbar-color: #c9cacc #dfe9eb;
}

/* Chrome, Edge and Safari */
.preparing_list_item::-webkit-scrollbar {
  height: 5%;
  width: 5px;
}

.preparing_list_item::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #dfe9eb;
}

.preparing_list_item::-webkit-scrollbar-track:active {
  background-color: #b8c0c2;
}

.preparing_list_item::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #c9cacc;
}

.preparing_list_item ul {
  padding-left: 0px;
}

.preparing_list_item ul li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0em;
  color: #222;
  margin-bottom: 18px;
}

.preparing_list_item ul li p {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}

.preparing_list_item ul li span {
  color: #222;
}

.preparing_list_item ul li img {
  display: block;
  width: 14px;
  height: 14px;
  margin-right: 7px;
  margin-left: -5px;
}

.preparing_list_item .preparing_list {
  color: #6e6e6e;
}

.preparing_list_item .preparing_list span {
  color: #6e6e6e;
}

.preparing_list_item ul li .fa-check {
  font-size: 18px;
  color: #35ae3a;
  margin-right: 6px;
  margin-bottom: -1px;
}

/**************************** Home Page Css Start **********************/
.w_content {
  margin-top: -15px;
  padding-bottom: 39px;
}

.w_content img {
  max-width: 394px;
  width: 100%;
  margin: auto;
  display: block;
}

.home_section_title {
  max-width: 620px;
  width: 100%;
  margin: auto;
  text-align: center;
}

.home_section_title h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 0em;
}

.home_section_title p {
  font-size: 16px;
  font-weight: 450;
  line-height: 25px;
  letter-spacing: 0em;
  margin-bottom: 0px;
}

.what_webqa_area {
  max-width: 930px;
  width: 100%;
  margin: auto;
}

.what_webqa_content {
  padding-top: 39px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.single_what_item_main {
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(120, 143, 204, 0.15);
  border-radius: 15px;
  min-height: 148px;
}

.single_what_item {
  display: flex;
  gap: 7px;
  padding: 26px 26px 41px 24px;
  height: 100%;
}

.single_what_item img {
  height: 18px;
  width: auto;
}

.Features_btn_area {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 58px;
}

.Features_btn {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 6px 18px;
  text-decoration: none;
  border-radius: 16px;
  background: #1e63b8;
  transition: 0.3s;
}

.Features_btn:hover {
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.learn_more_content {
  max-width: 937px;
  width: 100%;
  margin: auto;
  padding-bottom: 95px;
}

.learn_more_content h4 {
  color: #373737;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  padding-bottom: 28px;
}

.video-wrapper {
  position: relative;
  cursor: pointer;
}

.video-wrapper img {
  max-width: 937px;
  width: 100%;
  height: 385px;
  border-radius: 20px;
}

.video-wrapper iframe {
  max-width: 937px;
  width: 100%;
  height: 385px;
  border-radius: 20px;
}

.Designed_area {
  padding-bottom: 138px;
}

.Designed_area .home_section_title {
  max-width: 767px;
}

.Designed_content {
  max-width: 936px;
  width: 100%;
  margin: auto;
  padding-top: 39px;
}

.Designed_content .nav-tabs .nav-link {
  color: #7790ae;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 0.125rem solid transparent;
  white-space: nowrap;
}

.Designed_content .nav-tabs .nav-link::before {
  display: none;
}

.Designed_content .nav-tabs .nav-link.active {
  border-bottom-color: #1355a5;
  background: none;
  color: #1e63b8;
}

.Designed_content .nav-tabs .nav-link svg {
  height: 28px;
}

.Designed_content .nav {
  --bs-nav-link-padding-x: 0rem;
}

.Designed_content .nav-tabs .nav-link.active svg path {
  fill: #1e63b8;
}

.Designed_content .nav-tabs .nav-link.active::before {
  content: "";
  position: inherit;
  width: 0px;
  height: 0px;
}

.Designed_content .nav-tabs {
  gap: 20px 50px;
  flex-wrap: wrap;
  /* overflow: auto hidden; */
  justify-content: center;
  padding-bottom: 0.125rem;
}

.learn_more_tab_content {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px 110px;
}

.learn_more_left img {
  max-width: 400px;
  width: 100%;
}

.learn_more_right {
  flex-basis: 50%;
  width: 100%;
}

.learn_more_right_single {
  padding-bottom: 24px;
}

.learn_more_right:last-child.learn_more_right_single {
  padding-bottom: 0px;
}

.learn_more_right_single h4 {
  color: #373737;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}

.learn_more_right_single p {
  color: #6e6e6e;
  font-size: 18px;
  font-style: normal;
  font-weight: 450;
  line-height: 26px;
  margin-bottom: 0px;
}

.problems_area {
  max-width: 1076px;
  width: 100%;
  margin: auto;
  padding-bottom: 120px;
}

.problems_area .home_section_title {
  max-width: 709px;
}

.problems_content {
  padding-top: 42px;
  display: flex;
  gap: 40px 76px;
}

.problem_left_content {
  flex-basis: 40%;
}

.problem_right_content {
  flex-basis: 60%;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(177, 191, 214, 0.13);
  padding: 33px 22px;
}

.problem_right_content img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.tryFreeBtn {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 16px;
  background: #1e63b8;
  padding: 6px 18px;
  text-decoration: none;
}

.tryFreeBtn:hover {
  color: #fff;
}

.problem_left_content .accordion-item {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(149, 174, 216, 0.05);
  border: none;
}

.problem_left_content .accordion-item .accordion-button {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(149, 174, 216, 0.05);
  border: none;
  color: #373737;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.problem_left_content .accordion-body {
  padding-top: 0px;
  margin-top: -5px;
  padding-bottom: 24px;
}

.problem_left_content .accordion-body p {
  color: #6e6e6e;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 25px;
  margin-bottom: 32px;
}

.problem_left_content .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.problem_left_content .accordion-item:last-of-type .accordion-button.collapsed {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.problem_left_content .accordion-button::after {
  width: 15px;
  height: 15px;
  background-size: 100% 100%;
  transform: rotate(-90deg);
}

.problem_left_content .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

.problem_left_content .accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.assurance_area {
  max-width: 1197px;
  width: 100%;
  margin: auto;
  padding-bottom: 120px;
}

.assurance_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 135px;
}

.assurance_left_content h2 {
  color: #222;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  padding-bottom: 61px;
}

.assurance_left_img img {
  width: 100%;
}

.assurance_left_content .assurance_left_img {
  padding: 40px 68px 48px 45px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(121, 205, 190, 0.1);
}

.assurance_right_content p {
  color: #6e6e6e;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 26px;
}

.assurance_right_bottom_content {
  padding-top: 74px;
}

.assurance_right_bottom_content h3 {
  max-width: 352px;
  width: 100%;
  color: #222;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  padding-top: 11px;
  padding-bottom: 23px;
}

.assurance_right_bottom_content img {
  height: 82px;
  width: 82px;
  border-radius: 50%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.customisable_area {
  max-width: 1202px;
  width: 100%;
  margin: auto;
  padding-bottom: 113px;
}

.customisable_area .home_section_title {
  max-width: 992px;
}

.customisable_tab_content {
  padding-top: 62px;
}

.customisable_tab_content .nav-tabs .nav-link.active::before {
  position: inherit;
  width: 0px;
  height: 0px;
}

.customisable_tab_content .nav-tabs {
  border-bottom: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 22px;
}

.customisable_tab_content .nav-tabs .nav-link {
  border-radius: 50px;
  color: #6e6e6e;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  padding: 3px 29px;
}

.customisable_tab_content .nav-link.active {
  background: var(--primary);
  color: #fff;
}

.home_images_btn_area a {
  color: #373737;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 6px 18px;
  border: 1px solid #1e63b8;
  text-decoration: none;
  border-radius: 16px;
  white-space: nowrap;
  transition: 0.3s;
}

.home_images_btn_area a:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.home_images_btn_area .learn_more_btn {
  background: transparent;
}

.home_images_btn_area .sign_up_free {
  background: #1e63b8;
  color: #fff;
}

.home_images_tab_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  border-radius: 10px;
  background: #eaeef4;
}

.home_images_tab_left {
  padding: 30px 94px 30px 70px;
}

.home_images_tab_left h3 {
  color: #373737;
  font-size: 40px;
  font-style: normal;
  font-weight: 450;
  line-height: 48px;
  padding-bottom: 22px;
}

.home_images_tab_left p {
  color: #484848;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 26px;
  margin-bottom: 114px;
}

.home_images_tab_right {
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  border-radius: 0px 10px 10px 0px;
}

.home_images_btn_area {
  display: flex;
  gap: 14px;
}

/* New Sidebar */
.sidebar_accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar_accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.sidebar_accordion .accordion-item {
  border: none;
}

.sidebar_accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.sidebar_accordion .accordion-button {
  padding: 0.5rem 0;
  background-color: var(--bg-bluish-dark);
  margin-right: 80px;
  gap: 0.5rem;
}

.sidebar_accordion .accordion-header button span {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  margin-top: -5px;
}

.sidebar_accordion .accordion-item {
  background-color: transparent;
}

.sidebar_accordion .accordion-body {
  padding: 0;
  padding-top: 17px;
  position: relative;
}

.sidebar_accordion .accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-image: url("../assets/images/white-arrow1.png");
  background-size: 0.75rem auto;
  background-repeat: no-repeat;
  background-position: center;
}

.sidebar_menu2 > * {
  padding-right: 10px;
}

.sidebar_accordion .accordion-item .visable_content {
  margin-bottom: -3px;
}

.sidebar_accordion .accordion-body ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 0px;
  padding-bottom: 23px;
}

.sidebar_accordion .accordion-collapse.collapse.show .accordion-body ul {
  position: relative;
}

.sidebar_accordion .accordion-collapse.collapse.show .accordion-body ul::after {
  position: absolute;
  content: "";
  width: calc(100% + 42px);
  height: 1px;
  background: rgb(124, 139, 160);
  left: -28px;
  bottom: 0px;
}

.sidebar_accordion .inner_accordion_btn {
  margin-right: 45px;
}

.sidebar_accordion .inner_accordion {
  margin-left: -4px;
}

.sidebar_accordion .inner_accordion .accordion-body {
  margin-left: 9px;
}

.sidebar_accordion .accordion-body ul li {
  list-style: none;
}

.sidebar_accordion .accordion-body ul li a {
  text-decoration: none;
}

.sidebar_accordion .accordion-body ul li a {
  color: #d5e2f4;
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  opacity: 0.8;
}

.sidebar_accordion .accordion-body .text_12_bld {
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  line-height: normal;
  text-decoration: none;
  position: relative;
  padding-bottom: 17px;
  display: block;
}

.sidebar_accordion .accordion-body .text_12_bld::after {
  position: absolute;
  content: "";
  width: calc(100% + 32px);
  height: 1px;
  background: #7c8ba0;
  left: -22px;
  bottom: 0;
}

.Create_Report_btn {
  margin-top: 17px;
  margin-bottom: 20px;
  display: inline-flex;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 5px 18px;
  border-radius: 50px;
  border: 1px solid #dcdcdc;
  background: transparent;
  text-decoration: none;
  transition: 0.3s;
}

.Create_Report_btn:hover {
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 10px;
}

.sidebar_search_input {
  position: relative;
}

.sidebar_search_input input {
  color: #c4cbd3;
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  border-radius: 50px;
  border: 1px solid #96a0ae;
  background: transparent;
  padding: 7px 10px 7px 31px;
  width: 94%;
  margin-bottom: 15px;
}

.sidebar_search_input input::placeholder {
  color: #c4cbd3;
}

.sidebar_search_input label {
  position: absolute;
  left: 18px;
  top: 9px;
  cursor: pointer;
  color: #c4cbd3;
}

.tracker-table tr > *:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  left: 0;
  border-bottom: 1px solid #e2e0f4;
  background-color: #ffffff;
  box-sizing: border-box;
  position: sticky;
  left: 0;
}

.tracker-table tr > *:first-child .dropdown-toggle {
  padding: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
}

.tracker-table tr > *:first-child:hover {
  background-color: #e0e8f4;
}

.tracker-table tr > *:first-child:hover .dropdown-toggle {
  opacity: 1;
  visibility: visible;
}

.tracker-table tr > *:first-child .dropdown-toggle::after {
  display: none;
}

.tracker-table .dropdown-item {
  color: var(--text-gray);
}

.tracker-table .first-col-toggle-btn {
  border: 0;
  background-color: transparent;
  padding: 0;
}

.can-page-go-control {
  width: auto;
  display: inline-block;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  width: 3rem;
  background-color: transparent;
}

.tracker-table {
  position: relative;
}

.tracker-table .dropdown-toggle {
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  color: #6e6e6e;
  border: none;
}

.tracker-table .dropdown-toggle svg {
  width: 0.875rem;
  height: 0.875rem;
}

.tracker-table .dropdown-item {
  font-size: 0.75rem;
  color: #6e6e6e;
}

.table.dataTable {
  margin-top: 0 !important;
}

/* ====================Feedback==================== */
.menu-recheck-option {
  z-index: 2;
}

#show-col-btn {
  transform: rotate(180deg);
}

table.dataTable {
  color: #f1f5ff;
  --dt-row-selected: 241, 245, 255;
  --dt-row-selected-text: 110, 110, 110;
}

.dataTables_filter {
  display: none;
}

.tracker-table .table-header td {
  text-align: center;
}

.dataTables_empty {
  position: static !important;
  display: table-cell !important;
}
/* ====================Feedback==================== */









/* +++++++++++++++++++++++++++++++++++++++ sidebar update  ++++++++++++++++++++++++++++++++++++*/

.analysis_sidebar_main .offcanvas.offcanvas-start {
  max-width: 372px;
  width: 100%;
  top: 73px;
  left: 68px;
}
.analysis_sidebar_main .offcanvas {
  z-index: 999999;
}
.analysis_sidebar_main .offcanvas-header {
  padding-bottom: 5px;
}
.analysis_sidebar_main .offcanvas-title{
  font-family: Circular Std;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0em;
  color: #222222;
}
.analysis_sidebar_main .form-label{
  font-family: Circular Std;
  font-size: 12px;
  font-weight: 450;
  line-height: 15px;
  letter-spacing: 0em;
  display: block;
  margin-bottom: 5px;
  color: #222222;
}

.analysis_sidebar_main .form-control{
  font-family: Circular Std;
  font-size: 14px;
  font-weight: 450;
  line-height: 18px;
  letter-spacing: 0em;
  padding: 10px 15px;
}

.analysis_sidebar_main .nice-select {
  border-radius: 6px;
  border: 1px solid #ced4da;
  font-family: Circular Std;
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 0em;
  width: 100%;
  padding-left: 15px;
}
.analysis_sidebar_main .nice-select .list {
  margin-top: 0px;
  width: 100%;
  border: 1px solid #ced4da;
  border-top: none;
}
.analysis_sidebar_main .nice-select:after {
  height: 10px;
  margin-top: -8px;
  width: 10px;
}
.analysis_sidebar_main #important_check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.analysis_sidebar_main #important_check .btn{
  border: 1px solid #ced4da;
  font-family: Circular Std;
  font-size: 12px;
  font-weight: 450;
  line-height: 15px;
  letter-spacing: 0em;
  padding: 10px;
  width: 100px;
  display: flex;
  justify-content: center;
}
.analysis_sidebar_main #important_check .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  color: #FFF;
  background-color: #5CAE35;
  border: 1px solid #5CAE35;
  font-family: Circular Std;
  font-size: 12px;
  font-weight: 450;
  line-height: 15px;
  letter-spacing: 0em;
}
.analysis_sidebar_main .btn-primary{
  width: 100%;
  margin: 50px 0px;
  border-radius: 30px;
  font-family: Circular Std;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
  background: #0072e1;
}
.analysis_sidebar_main .btn-primary:hover{
  background: #0072e1;
  border: 1px solid #0072e1;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.analysis_sidebar_main .input_file{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #D3D5D8;
  border-radius: 6px;
  font-family: Circular Std;
  font-size: 12px;
  font-weight: 450;
  line-height: 15px;
  letter-spacing: 0em;
  color: #C5C5C5;
  padding: 10px;
}


/* About Page Styles Start */
.as1 {
  width: 100%;
  box-sizing: border-box;
  margin-top:90px;
  height: auto;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  position: relative;
}
.as1-left,
.as1-right {
  flex: 1;
  position: relative; 
}

.as1-center{
  flex: 2;
  position: relative;
}
 .as1-left-b-r{
  position: absolute;
}

.as1-left-picframe{
  position: absolute;
  top: 100px;
  left: 28%;
}
.as1-left-pic{
  position: absolute;
  top: 65px;
  left: 28%;
}

.as1-left-iconframe{
  position: absolute;
  top: 5%;
  left: 290px;
}

.as1-left-icon{
  position: absolute;
  top:15px;
  left:303px;
}

.as1-center-h1{
  position: absolute;
  top: 100px;
  left: 25%;
}
.as1-center-h2{
  position: absolute;
  top: 145px;
  left:22%;
}

.as1-center-p{
  position: absolute;
  top:230px;
  left: 15%;
}

.as1-right-b-r{
  position: absolute;
  right: 0;
}
.as1-right-picframe{
  position: absolute;
  top: 100px;
  right: 28%;
}

.as1-right-pic{
position: absolute;
  top: 66px;
  right: 23%;
}

.as1-right-iconframe{
  position: absolute;
  top: 80px;
  right: 90%;
}

.as1-right-icon{
  position: absolute;
  top:95px;
  left:-25px;
}


.as2{
  height:auto;
  width: 85%;
  background-color: #417cec;
  margin-top: 400px;
  padding: 30px 50px ;
  border-radius: 10px;
  color: #fff;
}

.as2-inner{
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
}
.as2-line1{
  content: "";
  position: absolute;
  height: 1px;
  width: 80%;
  background-color: #6e9ef1;
  top: 850px;
  left: 10%
}
.as2-line2{
  content: "";
  position: absolute;
  height: 1px;
  width: 80%;
  background-color: #6e9ef1;
  top: 1090px;
  left: 10%;
}

.as2-dtop{
  display: flex;
  justify-content: space-between;
  padding: 10px;
  gap: 100px;
}
.as2-dtop-left{
  flex: 40%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.as2-dtop-right{
  flex: 60%;
  margin-right: 30px;
}

.as2-dmid{
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 100px;
}
.as2-dmid-img{
  flex: 40%;
}
.as2-dmid-img img{
  margin-left: 20px;
}
.as2-dmid-right{
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-right: 30px;
  flex: 60%;
}

.as2-dlast{
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 100px;
}
.as2-dlast-img{
  flex: 40%;
}
.as2-dlast-img img{
  margin-left: 20px;
}
.as2-dlast-right{
  
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-right: 30px;
  flex: 60%;
}

.as3{
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 100px;
}


.as3-down{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.as3-down-card{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.as3-down-one-img1{
  position: relative;
}
.as3-down-card-imgcon{
  height: 40px;
  width: 40px;
  background-color: #f1f5ff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.as3-down-card-imgcon2{
  height: 40px;
  width: 40px;
  background-color: #f1f5ff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.as3-down-buton{
  height: 2rem;
  width: 7rem;
  border: none;
  outline: none;
  border: 1px solid #3264b8;
  background-color: #fff;
  border-radius: 20px;
  padding: 3px 5px;
  color:#3264b8;
}
.as3-down-buton:hover{
  background-color: #3264b8;
  color: #fff;
  transition: 0.3s ease;
}

.as4{
  background-color: #fafafc;
  width: 100%;
  height: auto;
  margin-top: 70px;
}

.as4-inner{
  display: flex;
  flex-direction: column;
  gap: 3rem;
  /* padding: 20px; */
  padding-top:50px;
  padding-bottom:50px;
  align-items: center;
}
.as4-topd{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.as4-topd-h{
  flex: 1;
}
.as4-topd-p{
  flex: 1;
}

.as4-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 2rem;
}

.as4-card{
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #9b9d9c;
  padding: 20px;
  border-radius: 10px;
}
.as4-card-imgs{
  height: 40px;
  width: 40px;
  background-color: #f1f5ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}
.as4-card-img{
  height: 40px;
  width: 40px;
  background-color: #f1f5ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}

.as4-button{
  background-color: #2b56a5;
  color: #fff;
  border: none;
  outline: none;
  padding: 10px 40px;
  border-radius: 20px;
}
.as4-button:hover{
  background-color: #fff;
  color:#2b56a5;
  transition: 0.3s ease;
  border:1px solid #2b56a5;
}

.as5{
  margin-top: 100px;
}
.as5-inner{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.as5-cards-wrapper {
  overflow: hidden;  /* keeps first/last cards inside */
  width: 100%;
}

.as5-cards{
  display: flex;
  gap: 10px;
  padding: 10px;
  scroll-behavior: smooth; 
  transition: transform 0.4s ease-in-out;
  justify-content: flex-start;
   overflow-x: auto; 
   scroll-snap-type: x mandatory;           /* optional: snap per card */
  scroll-behavior: smooth;                 /* smooth scroll */
  transition: none;                        /* no transform-based animation */
  -ms-overflow-style: none;                /* hide scrollbar (IE/Edge) */
  scrollbar-width: none;
}
.as5-cards::-webkit-scrollbar { display: none; } 
.as5-card{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding-bottom: 50px;
  padding-top: 20px;
  flex: 0 0 360px;
  scroll-snap-align: start; 
}

.as5-card-img{
  display: flex;
  gap: 15px;
}
.as5-card-img-p{
  margin-top: 10px;
}

.as5-card-p{
  color: #333;
}

.as5-bottom{
  display: flex;
  justify-content: center;
  gap: 10px;
}


.as5-bottom1,
.as5-bottom2{
  background-color: #2b56a5;
  padding: 5px 25px;
  border-radius: 20px;
  cursor: pointer;
}
.as5-bottom2{
  background-color: #2b56a5;
}
.as5-bottom1{
  background-color: #e4e4e4;
}

.as6{
  margin-top: 150px;
}
.as6-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}

.as6-cards{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.as6-card{
  border: 1px solid #e4e4e4;
  padding-top: 25px;
  padding-bottom: 25px;
  margin-left: 200px;
  margin-right: 200px;
  border-radius:10px;
}

.as6-card-question{
  display: flex;
  justify-content: space-around;
  padding: 5px 10px;
  margin-right: 20px;
}
.as6-card-question h5{
  flex: 98%;
  margin-left: 40px;
}
.as6-card-question img{
  flex: 2%;
  margin-left: 30px;
}

.as6-card-toggle{
  padding-left: 50px;
  padding-right: 50px;
  /* margin-top: 50px; */
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
}

.as6-card.active .as6-card-toggle{
  max-height: 300px;
}

.as6-card-question img {
  transition: transform 0.5s ease;
}

.as6-card.active .as6-card-question img {
  transform: rotate(180deg); /* smooth arrow rotation */
}

.as7{
  margin-top: 200px;
}

/* About Page Styles End */


/* 404-error-page Styles Start */


.ep1{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
  margin-top: 100px;
}

.ep1-dleft{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ep1-dright-p{
  max-width: 60%;
  color: #333;
}

.ep1-dright{
  flex: 1;
}
.ep1-dright img{
  width: 95%;
}

.ep1-dright-ref button{
  padding: 10px 25px;
  border: none;
  outline: none;
  border-radius: 50px;
  background-color: #3264b8;
  color: #fff;
  font-weight: bold;
}
.ep1-dright-ref button:hover{
  background-color: #fff;
  color: #3264b8;
  border: 1px solid #3264b8 ;
}

/* 404-error-page Styles End */


/* Feature root page Styles Start */


.fr1 {
  display: flex;
  align-items: center;       
  /* justify-content: center;    */
  gap: 1rem;                 
  width: 100%;
  padding-right: 5rem;       
  padding-left: 5rem;       
  box-sizing: border-box;
  margin-top: 100px;
}

.fr1-d1 {
  flex: 55%; 
  padding-left: 30px;
}
.fr1-d1-h{
  width: 100%;
  max-width: 450px;
}

.fr1-d1-p{
  width: 100%;
  max-width: 400px;
}

.fr1-d1-button{
  border: none;
  outline: none;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #2b56a5;
  color: #fff;
}

.fr1-d2 {
  flex: 45%; 
  display: flex;
  justify-content: center; 
  padding-bottom: 30px;
  align-items: center;
}

.fr1-d2-img {
  max-width: 100%;
  height: auto;
}


.fr2{
  width: 100%;
  height: auto;
  background-color: #f1f4f9;
  margin-top:100px;
  margin-bottom:100px;
}
.section-margin-top-zero{
  margin-top: 0;
}
.fr2-d{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 50px;
}
.fr2-d-h{
  text-align: center;
}
.fr2-d-p{
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.fr2-d-img{
  width: 100%;
  max-width: 900px;
  display: block;
}

.fr2-d-d{
  display: flex;
  flex-direction: column;
  /* width: 100%; */
  margin-top: 20px;
  gap: 20px;
  align-items: center;
}
.fr2-d-d .fr2-d-d-h6{
  align-self:flex-start;
  padding-left: 7rem;
}

.fr2-d-d-d{
  display: flex;
  padding-left: 7rem;
  padding-right: 7rem;
  gap: 10px;
}

.fr2-d-d-dDivs h6{
  color: #2b56a5;
}


.fr3{
  width: 100%;
  height: auto;
  background-color: #fff;
}

.fr3-d{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 50px;
  text-align: left;
}
.fr3-d-h{
  width: 100%;
  max-width: 850px;
  display: flex;
  align-items: flex-start;
}
.fr3-d-p{
  width: 100%;
  max-width: 850px;
  align-items: flex-start;
  padding-right: 300px;
  display: block;
}

.fr3-d-img{
  width: 100%;
  max-width: 900px;
  display: block;
}
.fr3-d-d{
  display: flex;
  flex-direction: column;
  /* width: 100%; */
  margin-top: 20px;
  gap: 20px;
  align-items: center;
  padding-left: 7rem;
  padding-right: 7rem;
  
}
.fr3-d-d .fr3-d-d-h6{
  align-self:flex-start;
  padding-left: 7rem;
}

.fr3-d-d-d{
  display: flex;
  padding-left: 7rem;
  padding-right: 7rem;
  gap: 20px;
}

.fr3-d-d-dDivs h6{
  color: #2b56a5;
}


.fr4{
  width: 100%;
  height: auto;
  padding: 50px;
  box-sizing: border-box;
  margin-top: 100px;
}
.section-margin{
  margin-bottom: 100px;
}

.fr4-inner{
  display: flex;
  justify-content: space-between;
  background: linear-gradient(to right, #007BFF 60%, rgba(0,123,255,0) 90%);
  border-radius: 10px;
  gap: 0;
  align-items: center;
  overflow: hidden;
}
.fr4-d1{
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  flex: 2;
}
.fr4-d1 h3{
  width: 100%;
  max-width: 600px;
  color: #fff;
}
.fr4-d1 p{
  width: 100%;
  max-width: 300px;
  color: #fff;
}
.fr4-d1-button{
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  outline: none;
  color: #2b56a5;
  cursor: pointer;
}
.fr4-d2{
  flex: 1;
  z-index: -1;
}

.frlast{
  width: 100%;
  height: auto;
  padding: 50px;
  /* box-sizing: border-box; */
  margin-top: 50px;
}

.frlast-inner{
  display: flex;
  justify-content: space-between;
  background: #417cec;
  border-radius: 10px;
  gap: 0;
  align-items: center;
  position: relative;
  overflow: visible;
}
.frlast-d1{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 50px;
  width: 100%;
  max-width: 600px;
  color: #fff;
}
.frlast-d2 {
  position: absolute;
  bottom: -1px;       
  right: 0;
}
.frlast-d1 h3{
  color: #fff;
}




/* Feature root page Styles Ends */

/* Feature child page Reports Styles Starts */


.fcr1{
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 100px;
  gap: 80px;
}
.fcr1-d1{
  flex: 2;
  padding-bottom: 70px;
}
.fcr1-d1-p{
  width: 100%;
  max-width: 380px;
}
.fcr1-d2{
  flex: 1;
}

.fcr2{
  width: 100%;
  height: auto;
  background-color: #f1f4f9;
  margin-top: 50px;
}
.fcr2-inner{
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.fcr2-d1{
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fcr2-d1 p{
  text-align: center;
}

.fcr2-d2{
  display: flex;
  gap: 40px;
}


.fcr2-d2-2-ol{
  list-style: none;
  margin-top: 30px;
  margin: 0;        
  padding: 0;
  margin-top: 50px;
  padding-left: 10px;
}

.fcr2-d2-2-ol li{
  position: relative;
  margin-bottom: 30px;
}
.fcr2-d2-2-ol li::before{
  content: "";
  background-color: #417cec;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  left: -15px;
  top: 10px;
}





.fcr3{
  width: 100%;
  height: auto;
  /* background-color: #f1f4f9; */
  margin-top: 50px;
}
.fcr3-inner{
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.fcr3-d1{
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fcr3-d1 p{
  text-align: center;
}

.fcr3-d2{
  display: flex;
  gap: 40px;
}


.fcr3-d2-2-ol{
  list-style: none;
  margin-top: 30px;
   margin: 0;        
  padding: 0;
}

.fcr3-d2-2-ol li{
  position: relative;
  margin-bottom: 30px;
}
.fcr3-d2-2-ol li::before{
  content: "";
  background-color: #417cec;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  left: -15px;
  top: 10px;
}

.fcr6{
  width: 100%;
  background-color: #f1f4f9;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px;
  margin-bottom: 300px;
}

.fcr6-d1{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.fcr6-d1 p{
  width: 100%;
  max-width: 750px;
}

.fcr6-d2{
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px;
}

.fcr6-d2-card{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  gap: 10px;
}


.frc6-card-div{
  height: 20px;
  width: 20px;
  background-color: #f1f4f9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top:9px;
  padding-bottom: 4px;
  padding-left: 9px;
  padding-right: 9px;
  border-radius: 4px;
}
.fcr6-d2-card h6{
  width: 100%;
  max-width: 150px;
  color: #417cec;
}




.fcr7{
  margin-top: 150px;
}
.as6-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}

.as6-cards{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.as6-card{
  border: 1px solid #e4e4e4;
  padding-top: 25px;
  padding-bottom: 25px;
  margin-left: 200px;
  margin-right: 200px;
  border-radius:10px;
}

.as6-card-question{
  display: flex;
  justify-content: space-around;
  padding: 5px 10px;
  margin-right: 20px;
}
.as6-card-question h5{
  flex: 98%;
  margin-left: 40px;
}
.as6-card-question img{
  flex: 2%;
  margin-left: 30px;
}

.as6-card-toggle{
  padding-left: 50px;
  padding-right: 50px;
  /* margin-top: 50px; */
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
}

.as6-card.active .as6-card-toggle{
  max-height: 300px;
}

.as6-card-question img {
  transition: transform 0.5s ease;
}

.as6-card.active .as6-card-question img {
  transform: rotate(180deg); /* smooth arrow rotation */
}

/* Feature child page Reports Styles Ends */


/* Feature child page Website Tracker Styles Start */
.fcwt1{
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 30px;
}

.fcwt1-d1{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.fcwt1-d1 h1{
  text-align: center;
}
.fcwt1-d1 p{
  width: 100%;
  max-width: 850px;
  text-align: center;
}

.fcwt1-d2 img{
width: 100%;
max-width: 900px;
}


.fcwt2{
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.fcwt2-d1{
  text-align: center;
}
.fcwt2-d2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.padding-left{
  padding-left: 40px;
}
.fcwt2-d2-card-d{
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.fcwt2-d2-card-d h3{
  width: 100%;
  max-width: 350px;
}
.fcwt2-d2-card-d p{
  width: 100%;
  max-width: 400px;
}
.fcwt2-d2-card img{
  width: 100%;
  max-width: 500px;
}

.fcwt3{
  margin-top: 30px;
  width: 100%;
  background-color: #417cec;
  height: auto;
}
.fcwt3-d1{
  padding-top:80px;
  padding-left: 130px;
  padding-right: 130px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fcwt3-d1 h1{
  width: 100%;
  max-width: 550px;
  color: #fff;
}
.fcwt3-d1 p{
  width: 100%;
  max-width: 500px;
  color: #fff;
}
.fcwt3-d2{
  padding-bottom: 50px;
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 0 auto; 
}
.fcwt3-d2 img {
  flex: 1; 
  max-width: 100%; 
  height: auto;
  min-width: 0; 
}
.fcwt3-d2 img:nth-child(1),
.fcwt3-d2 img:nth-child(3) {
  flex: 0.5; 
}

.fcwt3-d2 img:nth-child(2) {
  flex: 2.5; 
}



/* Feature child page Website Tracker Styles End */



/* Feature child page Settings Styles Start */

.fcs1{
  margin-top: 70px;
  display: flex;
  justify-content: center;
  padding: 60px;
  gap: 0px;
}

.fcs1-d1{
  padding: 30px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: flex-start;
  flex: 1;
}
.fcs1-d1 h1{
  font-weight: bolder;
  width: 100%;
  max-width: 490px;
}
.fcs1-d1 p{
  width: 100%;
  max-width: 500px;
}
.fcs1-d1-button{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.fcs1-d2{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.fcs1-d2 img{
  width: 100%;
  max-width: 600px;
}

.fcs2{
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 100px;
  padding-right: 100px;
  gap: 10px;
}
.fcs2 h1{
  font-weight: bolder;
  font-size: 50px;
  text-align: center;
}
.fcs2 p{
  font-size: 18px;
  text-align: center;
  width: 100%;
  max-width: 950px;
}


.fcs3{
  width: 100%;
  background-color: #417cec;
  display: flex;
  flex-direction: column;
  margin-top: 200px;
  gap: 30px;
  padding-bottom: 100px;
}
.fcs3-d1{
  padding-top: 50px;
  padding-left: 150px;
  padding-right: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.fcs3-d1 h1{
  color: #fff;
  font-weight: bolder;
  text-align: center;
}
.fcs3-d1-imgdiv img{
  width: 100%;
  max-width: 1000px;
}

.fcs3-d2{
  width: 100%;
  overflow: hidden;
}
.fcs3-d2-inner{
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}
.fcs3-d2-card{
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: flex-start;
  min-width: 325px;
  padding: 40px;
  background-color: #3a71d9;
  border-radius: 10px;
}
.card-active{
  border: 1px solid #fff;
  background-color: #417cec;
}
.fcs3-d2-card h6{
  color: #fff;
}
.fcs3-d2-card p{
  color: #fff;
}

.fcs3-d3{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.fcs3-d3-d1, .fcs3-d3-d2{
  padding-top: 9px;
  padding-bottom: 5px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 20px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.arrow-active{
  background-color: #fff;
  color: #417cec;
}

.fcs5{
  width: 100%;
}
.fcs5-d{
  padding: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fcs5-d h1{
  text-align: center;
}
.fcs5-d p{
  text-align: center;
}
.fcs5-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}

.fcs5-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: start;
}
.fcs5-card{
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 10px;
}

.fcs5-card-question{
  display: flex;
  justify-content: space-around;
  padding: 5px 10px;
  margin-right: 20px;
  
}
.fcs5-card-question h5{
  flex: 98%;
  margin-left: 40px;
  color: #417cec;
  text-align: center;
}
.fcs5-card-question img{
  flex: 2%;
  margin-left: 30px;
}

.fcs5-card-toggle{
  padding-left: 50px;
  padding-right: 50px;
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
  /* display: flex;
  align-items: center;
  justify-content: flex-start; */
}
.fcs5-card-toggle p{
  text-align: left;
}

.fcs5-card.active .fcs5-card-toggle{
  max-height: 300px;
  margin-top: 10px;
}

.fcs5-card-question img {
  transition: transform 0.5s ease;
}

.fcs5-card.active .fcs5-card-question img {
  transform: rotate(180deg); /* smooth arrow rotation */
}


.fcs6{
  margin-top: 50px;
  background-color: #f1f4f9;
}
.fcs6-inner{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 100px;
}
.fcs6-d1{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fcs6-d1 p{
  width: 100%;
  max-width: 750px;
}

.fcs6-cards-wrapper {
  overflow: hidden;  /* keeps first/last cards inside */
  width: 100%;
}

.fcs6-cards{
  display: flex;
  gap: 10px;
  padding: 10px;
  scroll-behavior: smooth; 
  transition: transform 0.4s ease-in-out;
  justify-content: flex-start;
   overflow-x: auto; 
   scroll-snap-type: x mandatory;           /* optional: snap per card */
  scroll-behavior: smooth;                 /* smooth scroll */
  transition: none;                        /* no transform-based animation */
  -ms-overflow-style: none;                /* hide scrollbar (IE/Edge) */
  scrollbar-width: none; 
}
.fcs6-cards::-webkit-scrollbar { display: none; } /* hide scrollbar (WebKit) */

.fcs6-card{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  padding-top: 20px;
  flex: 0 0 250px;
  scroll-snap-align: start; 
}
.fcs6-card h6{
  color: #417cec;
}
.fcs6-card-img{
  display: flex;
  gap: 15px;
}
.fcs6-card-img-p{
  margin-top: 10px;
}

.fcs6-card-p{
  color: #333;
}

.fcs6-bottom{
  display: flex;
  justify-content: center;
  gap: 10px;
}


.fcs6-bottom1,
.fcs6-bottom2{
  background-color: #2b56a5;
  padding: 5px 25px;
  border-radius: 20px;
  cursor: pointer;
}
.fcs6-bottom2{
  background-color: #2b56a5;
}
.fcs6-bottom1{
  background-color: #e4e4e4;
}


/* Feature child page Settings Styles End */


/* Feature child page audit test Styles Start */

.fcat2{
  width: 100%;
  background-color: #f1f4f9;
  padding:100px 140px ;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fcat4{
  width: 100%;
  padding: 130px 80px;
}
.fcat4-mainD{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.fcat4-mainD-cards{
  display: flex;
  gap: 20px;
}

.fcat4-mainD-d-card{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  
}
.fcat4-mainD-d-card img{
  width: 100%;
  max-width: 400px;
}
.fcat4-mainD-d-card-d1{
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: blue;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #417cec;

}
.fcat4-mainD-d-card-d1 h6{
  margin-top: 10px;
  color: #fff;
}
.fcat4-mainD-d-card-ldd{
  width: 80%;                 
  border-bottom: 2px dotted #c7c7c7;
  margin-right: 20px;
}
.fcat4-mainD-d-card-ld{
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}
/* Feature child page audit test Styles End */

/* Sitemap numbering styles */
.sitemap-container {
  position: relative;
  display: flex;
  font-family: monospace;
}

.sitemap-numbers {
  position: absolute;
  left: 0;
  top: 0;
  padding: 8px 12px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre;
  user-select: none;
  z-index: 1;
  min-height: 200px;
  box-sizing: border-box;
}

.sitemap-textarea {
  padding-left: 50px !important;
  border-radius: 0 4px 4px 0 !important;
  font-family: monospace;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  border-left: none !important;
}

.sitemap-textarea:focus {
  border-left: none !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}


.code-block{
    background: #EEE;
    margin-bottom: 20px;
    font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace !important;
    padding: 20px;
    border-radius: 6px;
    font-size: 15px;
  }

