@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");

.mr-auto {
  margin-left: auto;
}
html {
  scroll-behavior: smooth;
}

:root {
  --bg_blue: #13253c;
  --theme_blue: #009ef7;
  --pure_white: #fff;
  --theme_green: #50cd89;
  --pure_black: #000;
  --muted_color: #a1a5b7;
  --gradient_color: linear-gradient(90deg, #20aa3e 0%, #03a588 100%);
  --body_color: #fff;
  --item-color: #fff;
  --input_bg: #f9fffb;
}
:root body.darkmode {
  --body_color: #4c4c4c;
  --pure_white: #545252;
  --item-color: #747171;
  --pure_black: #acacac;
  --gradient_color: linear-gradient(90deg, #03a588 0%, #20aa3e 100%);
  --input_bg: #8fa293;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Lato", sans-serif;
  background: var(--body_color);
  
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
a {
  text-decoration: none;
}

/* ============= */

/* ========header sec start====== */
.header_area {
  position: absolute;
  width: 100%;
  left: 0;
  top: 15px;
  z-index: 999;
}
a.navbar-brand img {
  max-width: 180px;
}
.header_area .navbar {
  padding: 0;
}
.header_area .navbar-nav {
  gap: 15px;
}
.header_area .navbar-light .navbar-nav .nav-link {
  color: var(--pure_white);
  transition: 0.5s;
}

.header_area .navbar-light .navbar-nav .nav-link.active,
.header_area .navbar-light .navbar-nav .nav-link:hover {
  color: var(--theme_green);
  transition: 0.5s;
}
#logo_black {
  display: none;
}
ul.menubar_right {
  display: flex;
  gap: 10px;
  position: relative;
  align-items: center;
  padding-left: 50px;
  position: relative;
}
ul.menubar_right::before {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #ffffff73;
  position: absolute;
  top: 0;
  left: 26px;
}
#user,
#search_btn {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.5s;
}
#user:hover,
#search_btn:hover,
.header_area.fixed_header #user:hover,
.header_area.fixed_header #search_btn:hover {
  background-color: var(--theme_green);
  color: var(--pure_white);
  transition: 0.5s;
}
ul.menubar_right li a {
  color: var(--pure_white);
}
.select_lan {
  cursor: pointer;
  position: relative;
}
.selected_lan {
  display: flex;
  color: var(--theme_green);
  background: transparent;
  padding: 5px 15px;
  border-radius: 4px;
  align-items: center;
  border: 1px solid var(--theme_green);
  transition: 0.5s;
}
.selected_flag {
  width: 30px;
}
.selected_text {
  width: 70px;
}
.select_lan:hover .selected_lan {
  background: var(--theme_green);
  transition: 0.5s;
  color: var(--pure_white);
}
ul.lan_drop {
  position: absolute;
  width: 100%;
  background: #fff;
  right: 0;
  top: 110%;
  padding: 0px 0;
  display: grid;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  box-shadow: 0px 30px 70px rgb(40 0 152 / 10%);
}
.select_lan:hover ul.lan_drop {
  top: 100%;
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}
ul.lan_drop li {
  display: flex;
  color: var(--pure_black);
  padding: 5px 10px;
  gap: 10px;
  font-size: 14px;
}
ul.lan_drop li:hover {
  background-color: #ddd;
}
.fixed_header {
  position: fixed !important;
  z-index: 9999999 !important;
  width: 100% !important;
  top: 0px !important;
  padding: 0px 0px !important;
  transition: 0.5s !important;
  background: var(--pure_white) !important;
  box-shadow: 0 0 45px 0 rgb(62 28 131 / 10%);
}
.fixed_header #logo_white {
  display: none;
}
.fixed_header #logo_black {
  display: block;
}
.header_area.fixed_header .navbar-light .navbar-nav .nav-link {
  color: var(--pure_black);
}
.header_area.fixed_header .navbar-light .navbar-nav .nav-link.active {
  color: var(--theme_green);
}
.header_area.fixed_header #user,
.header_area.fixed_header #search_btn {
  color: var(--pure_black);
}
.header_area.fixed_header ul.menubar_right::before {
  background-color: #c4c4c473;
}
#mob_dark_btn {
  display: none;
}
/* ========header sec close====== */

/* ========banner start========== */
.banner_sec {
  background-color: var(--bg_blue);
  padding: 220px 0 60px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}
h1.banner_title {
  text-align: center;
  color: #fff;
  line-height: 1;
  font-weight: 300;
}
h1.banner_title span {
  color: var(--theme_green);
  font-weight: 600;
  display: inline-block;
  padding: 0 15px;
}
.banner_wrapper {
  display: flex;
  justify-content: center;
}
.banner_wrapper .change_texts {
  height: 83px;
  line-height: 80px;
  background-color: var(--bg_blue);
  overflow: hidden;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.change_texts li {
  list-style: none;
  font-size: 60px;
  font-weight: 600;
  position: relative;
  top: 0;
  animation: slide 24s steps(8) infinite;
}
@keyframes slide {
  100% {
    top: -720px;
  }
}
.change_texts li span {
  position: relative;
  z-index: 8;
  color: #fff;
  font-size: 36px;
  background: linear-gradient(to right, #12ce5d 0%, #ffd80c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.change_texts li span::after {
  content: "";
  width: 100%;
  height: 100%;
  border-left: 4px solid var(--theme_green);
  left: 0;
  position: absolute;
  animation: typing 1.5s steps(10) infinite alternate;
  background: var(--bg_blue);
  z-index: 9;
  top: 0;
}
@keyframes typing {
  100% {
    left: 100%;
    margin: 0 -35px 0 35px;
  }
}
.min_btn {
  color: var(--pure_white);
  padding: 15px 43px;
  background: var(--gradient_color);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: table;
  margin: 30px auto 0;
}
.min_btn::after {
  content: "";
  display: block;
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--pure_white) !important;
  border-radius: 4px;
  transform: scaleX(0) !important;
  transform-origin: right;
  transition: all 0.7s linear;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
  z-index: -1;
}
.min_btn:hover {
  color: var(--theme_green);
}
.min_btn:hover::after {
  transform: scaleX(1) !important;
  transform-origin: left !important;
}
.user_no {
  display: block;
  color: #a1a5b7;
  text-align: center;
  margin: 30px 0 50px;
  font-size: 24px;
}
/* ========banner close========== */

/* ======text analytic section start=== */
section.text_analytic_sec {
  padding: 150px 0 60px;
  background-image: url(../images2/pattern1.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -90px;
}
.section_title {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 15px;
  display: block;
  color: var(--pure_black);
  text-transform: capitalize;
}
.section_title:hover {
  color: var(--theme_green);
  transition: 0.5s;
}
.section_inner {
  box-shadow: 0px 30px 70px rgb(40 0 152 / 10%);
  padding: 30px;
  border-radius: 4px;
  background-color: var(--pure_white);
}
.section_para {
  /*color: var(--muted_color);*/
  color:black;
  font-size: 15px;
  text-align: center;
  display: block;
  padding: 0 7%;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 50px;
}
a.text-analytic_item {
  margin-bottom: 30px;
  display: block;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--item-color);
  box-shadow: 0px 20px 70px rgb(40 0 152 / 12%);
  width: 115px;
  height: 115px;
  border-radius: 50%;
  position: relative;
  margin: auto;
  transform: scale(1);
  transition: 0.2s;
}
.text-analytic_item:hover .service-icon {
  transform: scale(1.05);
  box-shadow: 0 22px 35px 2px rgb(2 18 106 / 14%);
  transition: 0.2s;
}
.service-icon .roted-around {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.service-icon .roted-around span {
  position: relative;
  display: block;
  height: 100%;
}
.service-icon .roted-around.danger span {
  transition: 0.5s;
}

.service-icon .roted-around span:after,
.service-icon .roted-around span:before {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
}
.service-icon .roted-around span:before {
  left: 15px;
  bottom: 10px;
}
.service-icon .roted-around span:after {
  right: 15px;
  top: 10px;
}
.service-icon .roted-around.danger span:after,
.service-icon .roted-around.danger span:before {
  background-image: linear-gradient(-45deg, #10df1b, var(--theme_blue));
}
@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.text-analytic_item:hover .service-icon .roted-around.danger span {
  -webkit-animation: rotation 10s linear infinite;
  animation: rotation 10s linear infinite;
}
span.text_analytic_text {
  display: block;
  text-align: center;
  margin-top: 15px;
  text-transform: capitalize;
  color: var(--pure_black);
  text-decoration: none;
  transition: 0.5s;
  font-size: 14px;
  padding: 5px 0 10px;
}
.text-analytic_item:hover span.text_analytic_text {
  color: var(--theme_green);
  transition: 0.5s;
}
.service-icon img {
  max-width: 48px;
}
.pricing_tab {
  background: var(--gradient_color);
  margin-bottom: 30px;
  border-radius: 4px;
  padding: 15px;
  cursor: pointer;
  position: relative;
}
.pricing_title {
  display: flex;
  color: #fff;
  text-transform: capitalize;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}
.pricing_title #drop_icon {
  transition: 0.5s;
}
.active-pricing.pricing_title #drop_icon {
  transform: rotate(180deg);
  transition: 0.5s;
}
.pricing_icon i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  background: var(--pure_white);
  color: var(--theme_green);
}
.adverise_ment {
  background: #eee;
  color: #000;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
  text-transform: capitalize;
}
ul.pricing_drop_down {
  position: absolute;
  width: 100%;
  max-height: 0;
  transition: max-height 0.5s ease-out;
  overflow: hidden;
  background: #fff;
  top: 100%;
  left: 0;
  z-index: 9;
  box-shadow: 0px 30px 70px rgb(40 0 152 / 10%);
  transition: 0.5s;
}
.active-pricing ul.pricing_drop_down {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}
ul.pricing_drop_down li a {
  display: flex;
  padding: 5px 15px;
  font-size: 14px;
  align-items: center;
  gap: 10px;
  color: var(--pure_black);
  transition: 0.5s;
  border-bottom: 1px solid #eee;
}
ul.pricing_drop_down li a:hover {
  background-color: #f8f8f8;
  transition: 0.5s;
  color: var(--theme_green);
}
.related_tools {
  margin-top: 30px;
  background: var(--pure_white);
  padding: 15px;
  border-radius: 4px;
  box-shadow: 8px 8px 70px rgb(40 0 152 / 12%);
}
.side_title {
  text-transform: capitalize;
  font-size: 18px;
  position: relative;
  padding-bottom: 3px;
  margin-bottom: 12px;
  color: var(--pure_black);
}
.side_title::after {
  content: "";
  width: 47px;
  height: 3px;
  background-color: var(--theme_green);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 30px;
}
ul.related_listing {
  display: grid;
}
ul.related_listing li {
}
ul.related_listing li a {
  display: flex;
  padding: 8px 0;
  padding-left: 30px;
  font-size: 14px;
  border-bottom: 1px solid #eeeeee54;
  position: relative;
  color: var(--pure_black);
  transition: 0.2s;
}
ul.related_listing li a:hover {
  color: var(--theme_green);
  transition: 0.2s;
}
ul.related_listing li a span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  background: var(--gradient_color);
  z-index: 3;
}
ul.related_listing li a span::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 50%;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gradient_color);
  z-index: 2;
  bottom: 0;
}
ul.related_listing li a:hover span::before {
  animation: ripple 0.8s infinite;
}
@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0.5;
    transform: scale(2);
  }
}
.sticky1,
.sticky2 {
  position: sticky;
  top: 60px;
}
/* ========text analytic tools close========== */

.full_width_ads {
  background: var(--gradient_color);
  border-radius: 4px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pure_white);
  text-transform: capitalize;
  margin-bottom: 60px;
}

/* ===========other editing start========== */
.other_editing_tools {
  padding: 60px 0;
  background-image: url(../images2/pattern1-e1.png);
  background-size: contain;
  background-repeat: repeat-y;
}
.other_editing_tools .related_tools {
  margin-top: 0;
  margin-bottom: 30px;
}
/*.inner_ads {
  background: var(--gradient_color);
  border-radius: 4px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pure_white);
  text-transform: capitalize;
  margin: 30px 0 60px;
}*/
.inner_ads {
  background: #7a7a7a;
  border-radius: 4px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pure_white);
  text-transform: capitalize;
  margin: 30px 0 60px;
  }
/* ===========other editing close========== */

/* Light Mode Button Styles
--------------------------- */

.light-mode-button {
  background: 0;
  border: 0;
  box-sizing: border-box;
  cursor: pointer;
  height: 40px;
  width: 65px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0);
  display: block;
  margin: auto;
}

.light-mode-button:focus {
  outline: none; /* Not ideal for accessibility */
}

.light-mode-button span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 65px;
  height: 30px;
  border-radius: 20px;
  background: var(--gradient_color);
  box-shadow: inset 1px 1px 3px 0 rgb(0 0 0 / 40%);
  transition: 0.3s;
}

.light-mode-button span:nth-child(2) {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 21px;
  height: 21px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 1px 1px 2px 0 rgb(0 0 0 / 40%);
  transition: 0.3s;
}
body[light-mode="dark"] .light-mode-button span:nth-child(1) {
  background-color: #ced4e2;
  color: #141516;
}

body.darkmode .light-mode-button span:nth-child(2) {
  left: 38px;
  background-color: var(--theme_green);
}

body[light-mode="dark"] a {
  color: #141516;
}
#light_mode_icon {
  background-image: url(../images2/day_mode.png);
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
}
.darkmode #light_mode_icon {
  background-image: url(../images2/night_mode.png);
}
/* Light & Dark Mode Styles
		--------------------------- */
.dark_mode_area {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  text-align: center;
  background: var(--pure_white);
  padding: 10px;
  width: 130px;
  box-shadow: 0 0 45px 0 rgb(62 28 131 / 10%);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  z-index: 9;
}
#mode_text {
  font-size: 14px;
  margin: 0;
  text-transform: capitalize;
  color: var(--pure_black);
}
.dark_top {
  display: flex;
  /* align-items: center; */
  gap: 10px;
  margin-bottom: 15px;
}

/* =========our associates section start========= */
.associate_section {
  padding: 60px 0;
}
.associate_section .section_title:hover {
  color: var(--pure_black);
}
.associate_item {
  box-shadow: -4px 7px 13px 3px rgb(40 0 152 / 10%);
  border-radius: 4px;
  padding: 15px;
  background: var(--item-color);
}
.associate_item img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: 0.5s;
}
.associate_item:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  transition: 0.5s;
}
.associate_section .owl-carousel .owl-stage-outer {
  padding: 30px 0;
}
.associate_section .owl-nav.disabled {
  display: block;
}

.associate_section .owl-carousel .owl-nav button.owl-next,
.associate_section .owl-carousel .owl-nav button.owl-prev {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: -4px 7px 13px 3px rgb(40 0 152 / 10%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--pure_white);
  transition: 0.5s;
}
.associate_section .owl-carousel .owl-nav button.owl-prev {
  left: -50px;
}
.associate_section .owl-carousel .owl-nav button.owl-next {
  right: -50px;
}
.associate_section .owl-carousel .owl-nav button.owl-prev:hover,
.associate_section .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--gradient_color);
  color: #fff;
  transition: 0.5s;
}

/* ========footer start========== */
.footer_area {
  background-color: var(--bg_blue);
  padding: 30px 0px 0px;
  background-image: url("../images2/pattern1.png");
  background-size: contain;
  background-attachment: fixed;
}
.footer_brand {
  background: var(--bg_blue);
  margin-top: -70px;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0px 30px 70px rgb(142 140 140 / 10%);
}
a.brand_logo img {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer_brand span {
  color: var(--muted_color);
  font-size: 14px;
  display: block;
  font-weight: 300;
  line-height: 21px;
  margin: 15px 0 50px;
}

.footer_title {
  color: #fff;
  font-size: 18px;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 3px;
  margin-bottom: 15px;
}
.footer_title::after {
  content: "";
  width: 47px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 30px;
}
ul.footer_social {
  display: flex;
  gap: 15px;
}
ul.footer_social li a {
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--pure_white);
  color: var(--pure_white);
  border-radius: 50%;
  transition: 0.5s;
}
ul.footer_social li:nth-child(1) a {
  background-color: #3b5998;
}
ul.footer_social li:nth-child(2) a {
  background-color: #55acee;
}
ul.footer_social li:nth-child(3) a {
  background-color: #0976b4;
}
ul.footer_social li:nth-child(4) a {
  background-color: #b7242a;
}
ul.footer_social li a:hover {
  background: var(--gradient_color);
  color: var(--pure_white);
  transition: 0.5s;
}
.footer_content {
  padding-left: 30px;
}
.quick_item {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}
.quick_info b {
  color: var(--pure_white);
  display: block;
  font-size: 16px;
  line-height: 1;
}
.quick_info span {
  display: block;
  color: var(--pure_white);
  font-weight: 300;
  font-size: 14px;
  margin-top: 5px;
}

ul.useful_links_list {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
}
ul.useful_links_list li {
  width: 48%;
}
ul.useful_links_list li a {
  color: var(--pure_white);
  font-weight: 300;
  transition: 0.5s;
}

ul.useful_links_list li a:hover {
  color: var(--theme_green);
  transition: 0.5s;
}
.subs_para {
  color: var(--muted_color);
  font-size: 14px;
  display: block;
  font-weight: 300;
  line-height: 21px;
  margin: 0px 0 30px;
}
.subscribe_area {
  position: relative;
}
.subscribe_area .form-control {
  border-radius: 30px;
  border: none;
  box-shadow: none !important;
  height: 45px;
}
.subscribe_btn {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  padding: 11px 32px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 0px;
}
.best_seller {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--pure_white);
  margin-top: 30px;
  font-size: 18px;
  font-weight: 300;
}
.copy_right_area {
  background: #4a4a4a2e;
  padding: 30px 0;
  margin-top: 30px;
}
span.copy_right_text {
  color: var(--muted_color);
  font-weight: 300;
  font-size: 14px;
}
ul.copy_listing {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
ul.copy_listing li a {
  color: var(--muted_color);
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 300;
  transition: 0.5s;
}
ul.copy_listing li a:hover {
  color: var(--theme_green);
  transition: 0.5s;
}

/* =======page1 start======== */
.inner_banner_sec {
  padding: 46px;
  background: var(--bg_blue);
}
.inner_section {
  padding: 30px 0 60px;
  background-image: url(../images2/pattern1.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.inner_area {
  box-shadow: 0px 30px 70px rgb(40 0 152 / 10%);
  padding: 30px;
  border-radius: 4px;
  background-color: var(--pure_white);
  padding-top: 30px;
}
a.table_header {
  display: flex;
  align-items: center;
  /* gap: 30px; */
  background-color: #f2f2f2;
  padding: 15px 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
ul.button_listing {
  display: flex;
  align-items: center;
}
.go_pro {
  position: relative;
  width: 173px;
  height: 48px;
}
.go_pro img {
  position: absolute;
  top: -3px;
  left: -32px;
}
.go-img2 {
  display: none;
}
ul.button_listing {
  display: flex;
  align-items: center;
  background: var(--pure_white);
  padding: 12px 32px;
  gap: 30px;
  position: relative;
}
.button_listing li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--pure_black);
}
.button_listing li span {
  width: 25px;
  height: 25px;
  display: inline-flex;
  background: #d3f8dc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--theme_green);
}
ul.button_listing::after,
ul.button_listing::before {
  width: 36px;
  height: 36px;
  background-color: var(--pure_white);
  position: absolute;
  top: 7px;
  content: "";
  border-radius: 4px;
  transform: rotate(45deg);
  z-index: 1;
}
ul.button_listing::after {
  right: -18px;
}
ul.button_listing::before {
  left: -18px;
}
.go_pro span {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  padding-left: 20px;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.try_now {
  background: var(--gradient_color);
  padding: 12px 39px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 14% 50%, 0 0);
  margin-left: 22px;
  border-radius: 4px;
  color: #fff;
  text-transform: capitalize;
}
.text_area .form-control {
  background: var(--input_bg);
  border: 1px solid #d0e8d8;
  box-shadow: none !important;
  height: 280px !important;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  padding-bottom: 55px;
}
.text_area .form-control:focus,
.url_link .form-control:focus {
  border: 1px solid var(--theme_green);
}

/* .upload_option .label_upload1 {
  min-width: 125px;
  height: 30px;
  font-size: 14px;
  font-weight: 600;
  background-color: #1e70b9 !important;
} */
.upload_btns.upload_file {
  background-image: url(../images2/upload_file.svg);
}
.upload_btns {
  width: 30px;
  height: 30px;
  border: 1px solid #e3e7ed;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.d-none {
  display: none !important;
}
.label_upload1 {
  background: var(--gradient_color);
  max-width: 133px;
  cursor: pointer;
  color: #fff;
  border-radius: 4px;
  padding: 5px 10px;
}
ul.upload_left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.uploads_btn,
.clear_btn {
  background: var(--gradient_color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
}
.clear_btn:hover {
  color: #f37c46;
  background: #f9e4e4;
  transition: 0.5s;
}
.google-drive {
}
.text_area {
  position: relative;
  margin-bottom: 5px;
}
.upload_options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: calc(100% - 6px);
  bottom: 3px;
  left: 3px;
}
.upload_options .selected_lan {
  background: var(--gradient_color);
  color: #fff;
  padding: 7px 15px;
}
ul.upload_right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.word_limit {
  font-size: 14px;
  color: var(--muted_color);
  font-weight: 300;
  margin-bottom: 10px;
}
.break_limit {
  font-size: 14px;
}
.break_limit a {
  background: var(--gradient_color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 30px;
  text-transform: capitalize;
  line-height: 1;
  display: inline-block;
  animation: goPro infinite;
  animation-duration: 2.5s;
}

@keyframes goPro {
  0% {
    scale: 1;
  }
  25% {
    scale: 1.1;
  }
  50% {
    scale: 1;
  }
  75% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
.break_limit span {
  margin-left: 7px;
}
.reviews_area {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.reviews_count {
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #eec933;
}
.rating_group {
  font-size: 14px;
  color: #eec933;
}
.rating_stars span {
  font-size: 14px;
}
.inner_section .inner_ads {
  margin: 15px 0;
}
.url_link_area label {
  font-size: 14px;
  margin-bottom: 0px;
  color: var(--muted_color);
}
.url_link {
  position: relative;
}
.url_link .form-control {
  height: 45px;
  background: var(--input_bg);
  border: 1px solid #d0e8d8;
  box-shadow: none !important;
  padding-left: 50px;
}
.url_icon {
  width: 43px;
  height: 43px;
  position: absolute;
  top: 1px;
  left: 1px;
  border-right: 1px solid #d0e8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted_color);
}
.more_ads {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}
.g-recaptcha {
  display: flex;
  justify-content: center;
}
.submit_buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.submit_buttons .min_btn {
  margin: 0;
}
#check_Plagiarism {
  animation: ripple 1s infinite;
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0px rgb(44, 168, 96);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(200, 253, 222, 0.373);
  }
}

/* =====results section start======= */
.result_section {
  padding: 60px 0 130px;
  background-image: url(../images2/pattern1-e1.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.result_heading {
  position: relative;
  text-align: center;
  color: var(--pure_black);
  line-height: 1;
  margin: 0px 0 20px;
  padding: 15px 0;
  font-size: 33px;
}
.result_heading::before {
  content: attr(data-text);
  position: absolute;
  top: -27px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: var(--muted_color);
  font-size: 61px;
  letter-spacing: 4px;
  opacity: 0.2;
}

.circular-chart {
  display: block;
  margin: 0px auto;
  height: 120px;
  margin-top: 0;
  width: 150px;
}
svg:not(:root) {
  overflow: hidden;
}
.circle-bg {
  transform: translate(0px, 1px);
  fill: none;
  stroke: #57bb9c;
  stroke-width: 5;
}
.circle {
  transform: translate(0px, 1px);
  fill: none;
  stroke: #d62929;
  stroke-width: 5;
  stroke-dasharray: 350;
  animation: progress 1s ease-out;
}
.result_area {
  background-color: var(--pure_white);
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0px 30px 70px rgb(40 0 152 / 10%);
}
.plug_count {
  border-right: 4px solid #d62929;
  padding-right: 10px;
  text-align: right;
  font-size: 14px;
}
.plug_count b,
.Unique_count b {
  display: block;
  font-size: 14px;
}
.Unique_count {
  border-left: 4px solid #57bb9c;
  padding-left: 10px;
  text-align: left;
  font-size: 14px;
}
.result_chart {
  margin-top: 15px;
}
.article_rewrite {
  display: block;
  text-align: center;
  margin-top: 15px;
  text-decoration: underline;
  color: var(--pure_black);
  transition: 0.5s;
  font-size: 14px;
}
.article_rewrite:hover {
  color: var(--theme_green);
  transition: 0.5s;
}
.inner_title {
  text-align: center;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--pure_black);
}
ul.Statistics_listing {
}
ul.Statistics_listing li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.stats {
  background: #7e7e7e;;
  padding: 1px 3px;
  font-size: 14px;
  color: #fff;
}
ul.Statistics_listing li:last-child {
  border-bottom: none;
}
.mt-30 {
  margin-top: 30px;
}
.document_wise {
  margin: 30px 0 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--pure_black);
  border-bottom: 1px solid #d0e8d8;
}
.document_wise span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #d3f8dc;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin-left: 10px;
  color: var(--theme_green);
}
.result_text {
  padding: 15px 15px 50px;
  background: #f4fff8;
  min-height: 400px;
  font-size: 14px;
  line-height: 29px;
  position: relative;
}
.result_text mark {
  background: #ffebeb;
  border-bottom: 1px solid #d62929;
}
/* .copy_btn {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 8px 15px;
  line-height: 1;
  text-transform: capitalize;
  border-radius: 4px;
  font-size: 14px;
  display: inline-flex;
  gap: 10px;
  background: var(--gradient_color);
  border: none;
  color: #fff;
} */
.notify_bar {
  background: var(--pure_black);
  color: var(--pure_white);
  font-weight: 300;
  font-size: 14px;
  text-align: center;
  padding: 5px 0px;
}

.download_btn {
  background: var(--gradient_color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  border: none;
  text-transform: capitalize;
}
.pdf_download,
.check-grammer,
.speech_btn {
  width: auto;
  gap: 10px;
  padding: 5px 15px;
}
.download_options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: calc(100% - 6px);
  bottom: 3px;
  left: 3px;
}
.output_counter {
  margin-top: 30px;
}
.words_count {
  text-align: right;
}
.words_count b {
  display: inline-block;
  margin-left: 15px;
  font-weight: 400;
}
.words_count b span {
  color: var(--theme_green);
}
.output_counter .min_btn {
  margin: 0;
  border: 1px solid var(--theme_green);
}
.sentence_wise {
  margin-top: 0;
}
.total_match {
  background: #f2f2f2;
  padding: 7px 10px;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  margin-bottom: 10px;
}
.total_text {
  font-size: 14px;
}
.pagination {
  align-items: center;
  gap: 8px;
}
.prev_btn,
.next_btn {
  width: 20px;
  height: 20px;
  background: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  border-radius: 50%;
  cursor: pointer;
}
.match_link_item {
  background: #ffebeb;
  padding: 10px;
}
.match_link_topbar {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--pure_black);
  margin-bottom: 10px;
}
.match_link_topbar a {
  color: #d62929;
}
.match_link_title {
  color: var(--theme_blue);
  font-size: 16px;
  margin-bottom: 10px;
}
.match_link_para {
  font-size: 14px;
  font-weight: 300;
  color: var(--pure_black);
}
a.ref_link {
  font-size: 14px;
  color: #d62929;
  line-height: 17px;
  display: block;
  word-break: break-all;
  margin-top: 10px;
}
.make_uni {
}
.make_uni span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #d3f8dc;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin-left: 10px;
  color: var(--theme_green);
}

/* =======go pro sec start======== */
section.go_pro_sec {
  margin-top: -75px;
  margin-bottom: 75px;
}
section.go_pro_sec a {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-radius: 4px;
  background: var(--gradient_color);
  align-items: center;
}
.pro_left {
  width: 25%;
  display: flex;
  align-items: center;
}
.pro_left img {
  max-width: 170px;
}
.pro_left span {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  margin-right: 30px;
}
section.go_pro_sec ul.button_listing {
  background: transparent;
  position: relative;
  width: 48%;
  justify-content: center;
}
section.go_pro_sec ul.button_listing::after,
section.go_pro_sec ul.button_listing::before {
  display: none;
}
section.go_pro_sec .button_listing li {
  color: var(--pure_white);
}
.try {
  width: 25%;
  text-align: right;
}
.try span {
  background: #fff;
  padding: 13px 34px;
  text-transform: capitalize;
  color: #000;
  border-radius: 4px;
  animation: ripple 1s infinite;
}

/* =========what we offer======== */
section.we_offer_setion {
  padding: 60px 0;
}
.offer_item {
  margin-top: 50px;
}
.offer_title {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 50px;
  position: relative;
  margin-bottom: 20px;
  font-size: 20px;
}
.offer_title::after {
  content: "";
  width: 50px;
  background-color: var(--theme_green);
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
}
.offer_icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 0 34px -14px #002c57;
}
.offer_icon img {
  max-width: 36px;
}
ul.offer_listing {
  display: grid;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
}
ul.offer_listing li span {
  width: 20px;
  height: 20px;
  display: inline-flex;
  background: #d3f8dc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--theme_green);
  margin-right: 10px;
}

/* =======login start======= */
.login_body {
    padding: 50px 0;
    overflow: hidden;
}
.login_form{
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 0 35px rgb(0 0 0 / 10%);
    text-align: left;
    position: relative;
    z-index: 0;
  
}
.login_body .login_form:before {
    content: "";
    width: 100%;
    height: 168px;
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/img-55\ copy.png) top left repeat;
    background-size: cover;
    z-index: -1;
    border-radius: 30px 30px 0 0;
}
.logo{
    padding-bottom: 10px;
}
.login_form h3 b {
    padding-bottom: 35px;
    padding: 20px 0;
    font-size: 17px;
    
}
.login_form_inner .form-group .form-control {
    font-size: 14px;
    outline: none;
    background: transparent!important;
    color: #907474;
    font-weight: 400;
    border: none;
    border-bottom: solid 1px #bdbdbd;
    border-radius: 0;
    width: 100%;
    padding: 13px 15px 5px 30px;
    box-shadow: none;
}
.login_form_inner .form-group {
    position: relative;
    margin-bottom: 15px;
}
.login_form_inner .form-group  i {
    font-size: 18px;
    color: #50cd89;
    top: 18px;
    position: absolute;
}


.form-group a{
    color: #50cd89;
}
.check_boxs{
    padding-top: 20px;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  
  
  

  
 .check_boxs .form-group {
    display: block;
    margin-bottom: 15px;
  }
  
 .check_boxs .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }
  
  .check_boxs .form-group label {
    position: relative;
    display: flex;
    cursor: pointer;
    align-items: flex-start;
}
  
.check_boxs .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #50cd89;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 8px;
    display: inline-block;
    position: relative;
    border-radius: 4px;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}
.check_boxs .form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 13px;
    border: solid #50cd89;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
button.register_btn {
    background-color: #50cd89;
    padding: 0 170px;
    line-height: 50px;
    display: table;
    margin: auto;
    font-size: 16px;
    font-weight: 600;
}



.login_form .social_list li a {
    font-size: 16px;
    font-weight: 600;
    margin: 2px 0 3px 0;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
ul.social_list li a span {
    display: inline-block;
    padding: 0 15px 0 15px;
}
.login_form .social_list li a i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    float: left;
    color: #fff;
    font-size: 14px;
    border-radius: 20px;
  
}

.social_list{
    display: flex;
     justify-content: space-between;
    padding-top: 20px;
 
}
.social_list li a.facebook_color i{
    background-color:#4867aa ;
}


.social_list li a.facebook_color:hover{
    background-image:  linear-gradient(90deg, #20aa3e 0%, #03a588 100%);
    transition-duration: 0.5s;

}
.social_list li a.google_color i{
    background-color:#db4437 ;

}
.social_list li a.google_color:hover{
    background-image:  linear-gradient(90deg, #20aa3e 0%, #03a588 100%);
    transition-duration: 0.5s;

}
.social_list li a.facebook_color{
    color: #4867aa;
}
.social_list li a.google_color{
    color: #db4437;
}
.last_text {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 300;
}
.last_text a{
    color:#50cd89 ;
}
.form-group span {
    font-size: 14px;
    font-weight: 400;
}
.login_form_inner a{
    width: 100% ;
} 
/* ======log in  close======= */
.upload_btns {
  width: 30px;
  height: 30px;
  border: 1px solid #e3e7ed;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.upload_btns.upload_file {
  background-image: url(../images/upload_file.svg);
}


/*-----input_part_new_strat----*/
.count_part{
display: flex;
  justify-content:space-between;
padding: 10px 30px;
}
.submit_area{
  display: flex;
  justify-content: space-between;
}
.case_buttons {
  color: var(--pure_white);
  padding: 10px 16px;
  background: var(--gradient_color);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: table;
  margin: 10px  0;
  border: none;
  text-align: center;
  padding-left: 20px;
}
.case_buttons::after {
  content: "";
  display: block;
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--pure_white) !important;
  border-radius: 4px;
  transform: scaleX(0) !important;
  transform-origin: right;
  transition: all 0.7s linear;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
  z-index: -1;
}
.case_buttons:hover {
  color: var(--theme_green);
}
.case_buttons:hover::after {
  transform: scaleX(1) !important;
  transform-origin: left !important;
}
.character{
  font-size: 13px;
}
.word{
  font-size: 13px;
}
/*-----input_part_new_close----*/


/*----drop down start area---*/
.main_part {
  background: #f9fffb;
  border: 1px solid #d0e8d8;
  padding: 100px 0;
  border-radius: 4px;
  position: relative;
}
.drop-zone {
    width: 460px;
    height: 356px;
    padding: 25px;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    text-align: center;
   
    /* font-weight: 500; */
    /* font-size: 20px; */
    cursor: pointer;
   
    border: 4px dashed #009578;
    border-radius: 10px;
    border: 1.5px dashed #CFD4DD;
    box-shadow: 0px 0px 15px 1px #CFD4DD;
}

.drop-zone--over {
  border-style: solid;
}

.drop-zone__input {
  display: none;
}

.drop-zone__thumb {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #cccccc;
  background-size: cover;
  position: relative;
}
.drop-zone__thumb1 {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #cccccc;
  background-size: cover;
  position: relative;
}

.drop-zone__thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  text-align: center;
}
.drop-zone__thumb1::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  text-align: center;
}
.drop-zone__thumb::before {
  content: "";
  width: 60%;
  height: 58%;
  position: absolute;
  background: url(../images/word.png);
  background-size: contain;
  left: 50%;
  background-position: 42% 0%;
  background-repeat: no-repeat;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.drop-zone__thumb1::before {
  content: "";
  width: 60%;
  height: 58%;
  position: absolute;
  background: url(../images/excel.png);
  background-size: contain;
  left: 50%;
  background-position: 42% 0%;
  background-repeat: no-repeat;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.drop_down_main{
  display: table;
  margin: auto;
}
.drop-zone p {
  padding-top: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #aaa7a7;
}
.file_image img {
  background-image: linear-gradient(90deg, #20aa3e 0%, #03a588 100%);
  border: none;
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
}
.plus_button {
  background-image: linear-gradient(90deg, #20aa3e 0%, #03a588 100%);
  border-radius: 8px;
  border: none;
  height: 30px;
  top: 0;
  right: 0;
  position: absolute;
  width: 30px;
  text-align: center;
  line-height: 2em;
}
.plus_button a{
  text-decoration: none;
  color: #fff;
}



.pdf_part {
  background: var(--input_bg);
  border: 1px solid #d0e8d8;
  padding: 50px 0;
  border-radius: 4px;
  margin-top: 20px;
 
}
.pdf_files {
  display: table;
  margin: auto;
  width: 195px;
  height: 217px;
  padding: 25px;
  border-radius: 10px;
  background-color: var(--pure_white);
  box-shadow: 0px 0px 15px 1px #CFD4DD;
}
.pdf_files img {
  max-width: 95px;
  display: table;
  margin: auto;
}
.pdf_files p {

  text-align: center;
  padding-top: 30px;
  font-size: 15px;
  font-weight: 600;
}
.pdf_part .min_btn {
  color: var(--pure_white);
  padding: 15px 16px;
  background: var(--gradient_color);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: table;
  margin: 9px auto 0;
}
.pdf_part .min_btn:hover{
 color:var(--theme_green);
}
.pdf_part span {

  text-align: center;
  display: table;
  margin: auto;
  font-size: 13px;
  padding: 10px 0 20px;
  font-weight: 400;
}
.pdf_part span i{
  cursor: pointer;
  font-weight: 600;
}
.download_convert_files{
  display: flex;
  justify-content: center;
  gap: 10px;
}

.download_convert_files .min_btn {
  color: var(--pure_white);
  padding: 15px 16px;
  background: var(--gradient_color);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: table;
  margin: 0;
}
/*----drop down close---*/
.darkmode .section_inner, .darkmode .inner_area, .darkmode  .result_area {
  background-color: #d5d5d5;
}
.darkmode .service-icon {
  background-color: #e5e5e5;
}
.darkmode .section_title {
  color: #747474;
}
.darkmode span.text_analytic_text {
  color: #444343;
}
.darkmode .inner_ads {
  color: #dfdfdf;
}
.darkmode .related_tools {
  background: #d5d5d5;
}
.darkmode ul.related_listing li a {
  color: #606060;
}
.darkmode .answer {
  background-color: #dbdbdb;
  box-shadow: 0px 0px 15px 1px #6a6a6a59;
}
.darkmode .offer_item {
  background-color: #d5d5d5;
}
.darkmode form.keyword_density_form {
  border: 1px solid #c7c7c7;
  background: #c7c7c7;
}

.darkmode .col.px-4.pb-4.mps, .darkmode .col.px-4.pb-4.mps {
  border: 1px solid #c7c7c7;
  background: #c7c7c7 !important;
}
