/* ---------------- Google fonts ------------------ */
@import url("https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* ------------------ Custom fonts goes here --------------- */

/* ---------------- Basic css ------------------ */
html {
  font-size: 62.5%;
}

:root {
  scroll-behavior: unset;
  --white: #ffffff;
  --black: #000000;
  --red: #ee322f;
  --grayF1: #f1f1f1;
  --grayFc: #fcfcfc;
  --boxShadow: 0 0 2.5rem 0.1rem rgba(0, 0, 0, 0.15);
  --imgwhite: brightness(0) saturate(100%) invert(100%) sepia(10%)
    saturate(7474%) hue-rotate(184deg) brightness(125%) contrast(99%);
  --header_height: 10rem;
  --logo_width: 16.2rem;
  --logo_padding: 0 5.1rem;
}

img {
  width: 100%;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
  color: inherit;
}

a:hover {
  text-decoration: underline;
  color: #000;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  background: none;
  border: none;
  outline: none;
}

header {
  position: relative;
  z-index: 99999;
}

/* body */
body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  overflow-x: hidden;
  font-family: "Prompt", sans-serif;
}

.container {
  padding-left: 2rem;
  padding-right: 2rem;
}

main {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: var(--header_height);
}

.figure img,
.figure {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: "Prompt", sans-serif;
}

/* Font Weights */
.f_300 {
  font-weight: 300 !important;
}
.f_400 {
  font-weight: 400 !important;
}
.f_500 {
  font-weight: 500 !important;
}
.f_600 {
  font-weight: 600 !important;
}
.f_700 {
  font-weight: 700 !important;
}
.f_800 {
  font-weight: 800 !important;
}
.f_900 {
  font-weight: 900 !important;
}

/* titles */
.title_65 {
  font-size: 6.5rem;
  font-style: italic;
}
.title_55 {
  font-size: 5.5rem;
  font-style: italic;
}
.title_45 {
  font-size: 4.5rem;
  font-style: italic;
}
.title_40 {
  font-size: 4rem;
  font-style: italic;
}
.title_35 {
  font-size: 3.5rem;
}
.title_22 {
  font-size: 2.2rem;
}

/* texts */
.text_25 {
  font-size: 2.5rem;
}

.text_23 {
  font-size: 2.3rem;
}

.text_20 {
  font-size: 2rem;
}
.text_19 {
  font-size: 1.9rem;
}
.text_18 {
  font-size: 1.8rem;
}
.text_17 {
  font-size: 1.7rem;
}
.text_16 {
  font-size: 1.6rem;
}
.text_15 {
  font-size: 1.5rem;
}
.text_14 {
  font-size: 1.4rem;
}

/* font_italic */
.font_italic {
  font-style: italic !important;
}

/* section_shadow */
.section_shadow {
  background: url(../img/service_bg.png) no-repeat scroll top center / 100%
    50rem;
}
/* -------------- Scroll bar ------------- */
::-webkit-scrollbar {
  width: 1rem;
  /* width of the entire scrollbar */
  border-radius: 1rem;
  transition: 0.2s;
}

::-webkit-scrollbar:hover {
  width: 1rem;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* color of the track */
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--red);
  /* color of the thumb */
  border-radius: 1rem;
  /* rounded corners of the thumb */
  border: 1px solid #f1f1f1;
  /* border around the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(133, 98, 98, 0.8);
}

/* -------------- preloader --------------- */
#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #000000;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* -------------- Back to top ------------ */
.back-to-top {
  width: 5.5rem;
  height: 5.5rem;
  line-height: 4.5rem;
  text-align: center;
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  border-radius: 50%;
  background: #000;
  z-index: 1000;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.back-to-top img {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%)
    saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(288deg) brightness(102%) contrast(102%);
  -webkit-transform: rotate(-92deg);
  -ms-transform: rotate(-92deg);
  transform: rotate(-92deg);
  width: 2rem;
}

.topbtn_hide {
  opacity: 1;
}

/* -------------- Hamburger Menu --------------- */
.hamburger-menu span {
  width: 2.5rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  border-radius: 10rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.hamburger-menu {
  width: 3rem;
  height: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger-menu:hover {
  opacity: 0.5;
}

.bar .line-top {
  -webkit-transform: translateY(-0.6rem);
  -ms-transform: translateY(-0.6rem);
  transform: translateY(-0.6rem);
}

.bar .line-bottom {
  -webkit-transform: translateY(0.6rem);
  -ms-transform: translateY(0.6rem);
  transform: translateY(0.6rem);
}

.hamburger-menu.bar:hover .line-top {
  -webkit-transform: translateY(-0.7rem);
  -ms-transform: translateY(-0.7rem);
  transform: translateY(-0.7rem);
}

.hamburger-menu.bar:hover .line-bottom {
  -webkit-transform: translateY(0.7rem);
  -ms-transform: translateY(0.7rem);
  transform: translateY(0.7rem);
}

.cross .line-top {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cross .line-bottom {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.cross .line-center {
  opacity: 0;
  width: 0;
}

/* Button */
.button {
  border: 0.2rem solid #000;
  height: 5.5rem;
  display: flex;
  width: fit-content;
  padding: 0 6.5rem;
  align-items: center;
  border-radius: 10rem;
  white-space: nowrap;
  position: relative;
}

.button:hover {
  color: #fff;
  border: 0.1rem solid #000;
  box-shadow: var(--boxShadow);
  text-decoration: none;
}

.button:before {
  width: 10%;
  content: "";
  height: 100%;
  background: #000000;
  transition: 0.35s ease;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  border-radius: 10rem;
  z-index: -1;
}

.button:hover:before {
  opacity: 1;
  width: 100%;
}

.gray_button {
  background: var(--grayF1);
  border-color: var(--grayF1);
  text-align: center;
  justify-content: center;
}

.gray_button:before {
  display: none;
}

.gray_button:hover {
  background: #000;
}

/* -------------- Header Styles by Sahriar --------------- */
.site_header {
  height: auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 99999999999;
  width: 100%;
  background: #fdfdfd;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.site_header .container {
  height: 100%;
}

.dot_icon img {
  width: 3rem;
}

.user_icon {
  background: #000;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  position: relative;
}

.user_icon img {
  width: 1.5rem;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7480%)
    hue-rotate(111deg) brightness(100%) contrast(100%);
}

.user_icon p {
  position: absolute;
  white-space: nowrap;
  right: 2rem;
  transition: 0.3s ease;
  opacity: 0;
}

.user_icon:hover p {
  right: 6rem;
  opacity: 1;
}

.user_icon:hover {
  background: var(--red);
}

.logo {
  height: var(--header_height);
  background: #ee322f;
  display: flex;
  padding: var(--logo_padding);
}

.logo img {
  width: var(--logo_width);
}

.primary_menu {
  gap: 10rem;
}

.header_right {
  gap: 2.5rem;
  height: 100%;
}

.dot_icon {
  height: var(--header_height);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  background: #f1f1f1;
  position: relative;
}

.menu_link {
  position: relative;
}

.menu_link:before {
  width: 1rem;
  position: absolute;
  content: "";
  height: 1rem;
  background: var(--red);
  border-radius: 10rem;
  top: 50%;
  transform: translateY(-50%) scale(0.5);
  left: -1.5rem;
  opacity: 0;
  transition: 0.2s ease;
}

.menu_link:hover:before {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.dot_icon > * {
  position: absolute !important;
  transition: 0.5s;
}

/* sticky header styles */
.sticky {
  position: fixed;
  -webkit-box-shadow: 0 0 1.5rem 0.5rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1.5rem 0.5rem rgba(0, 0, 0, 0.1);
  -webkit-animation: 0.3s updown;
  animation: 0.3s updown;
}

@-webkit-keyframes updown {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

@keyframes updown {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

.menu_up {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateY(-105%);
  -ms-transform: translateY(-105%);
  transform: translateY(-105%);
  -webkit-box-shadow: 0 0 1.5rem 0.5rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1.5rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* ======================== Hero Section ====================== */
.Hero_section {
  padding: 26rem 0 12rem 0;
}

.Hero_section .container {
  position: relative;
  z-index: 999;
}

.section_logo {
  width: 17rem;
}

.hero_img_dots {
  position: absolute;
  z-index: 0;
  width: 13.1rem;
  pointer-events: none;
  top: -18.5rem;
  right: -20.5rem;
}

.hero_image {
  position: relative;
}

.hero_img_shape {
  position: absolute;
  width: 86.8rem;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: -1;
  pointer-events: none;
}

.hero_content p {
  padding-right: 33rem;
}

/* ======================== Hero Section ====================== */
.system_flow_section {
  padding: 7.5rem 0;
}

.system_box.one img {
  width: 8rem;
}

.system_box.two img,
.system_box.three img {
  width: 7.6rem;
}

.system_box img {
  margin-bottom: 1.5rem;
}

.system_box p {
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.system_arow {
  gap: 3rem;
}

.line {
  width: 6rem;
  height: 0.2rem;
  background: #dedede;
}

.system_arow img {
  width: 1.7rem;
}

.system_flow_contents {
  padding: 4.3rem 15rem 2.2rem 15rem;
  border: 0.1rem solid #dcdcdc;
  border-radius: 10rem;
}

/* ================== Service Section ================== */
.services_section {
  padding: 10.5rem 0 15.4rem 0;
}

.service_content img {
  width: 6.7rem;
}

.service_earth {
  position: absolute;
  width: 28rem;
  right: 1.5rem;
  top: 3.2rem;
}

.service_image {
  background: #f1f1f1;
  padding: 17rem 10.6rem;
  position: relative;
  height: 60rem;
  display: grid;
  align-items: center;
}

.service_image img:first-child {
  position: relative;
  z-index: 1;
}

.services_section .Section_top {
  padding-bottom: 12.8rem;
}

.service_content p {
  line-height: 2.8rem;
}

.services_section .row .col-lg-6:first-child {
  padding-right: 2.25rem;
}

.services_section .row .col-lg-6:last-child {
  padding-left: 2.25rem;
}

.world_map {
  position: absolute;
  width: calc(100% - 6rem);
  left: 3rem;
  filter: brightness(0.2) saturate(100%) invert(85%) sepia(16%) saturate(30%)
    hue-rotate(45deg) brightness(100%) contrast(95%);
}

.service_logo {
  width: 30.1rem;
  margin: 0 auto;
}

.service_button {
  gap: 9rem;
  margin-top: 14rem;
}

.service_button .line {
  width: 100vw;
}

/* ================== Footer Section ================== */
.footer_links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer_links a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer_links a img {
  width: 1.522rem;
}

.footer_box:nth-child(2) {
  padding-left: 15.5rem;
  padding-right: 11.7rem;
}

.footer_boxes {
  padding-left: 17rem;
}

.social_icons a {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #000;
  border-radius: 10rem;
}

.social_icons a:last-child img {
  width: 2rem;
}

.social_icons a:first-child img {
  width: 0.9rem;
}

.social_icons a:hover {
  background: #000;
}

.social_icons a:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(276deg) brightness(103%) contrast(101%);
}

.social_icons {
  gap: 1.5rem;
  margin-top: 8.2rem;
}

.footer_box h2 {
  line-height: 3rem;
  padding-bottom: 2.8rem;
}

.footer_links a {
  line-height: 2.4rem;
}

.site_footer {
  border-top: 1.6rem solid #ececec;
  padding: 7rem 0 4rem 0;
  background: #fff;
}

/* copywrite */
.copywrite p img {
  width: 1.5rem;
}

.copywrite p:last-child {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.copywrite p {
  line-height: 1;
}

.copywrite {
  padding-top: 3rem;
  border-top: 0.1rem solid #ececec;
}

/* =============== toolshop-cap-open-page ============== */
.toolshop_section {
  padding: 6.2rem 0 13.5rem 0;
}

.toolshop-cap-open-page {
  background: #f6f6f6;
}

.plus_button {
  width: 5rem;
  height: 5rem;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 600;
  border-radius: 10rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: 0.2s;
  border: 0.3rem solid transparent;
  color: var(--red);
}

.plus_button:hover {
  border: 0.3rem solid #f1f1f1;
  background: transparent;
}

.plus_button::before {
  content: "Add To Cart";
  font-size: 1.5rem;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  position: absolute;
  right: 5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  white-space: nowrap;
  opacity: 0;
}

.plus_button:hover:before {
  right: 6rem;
  opacity: 1;
}

.toolshop_box {
  background: #fff;
  padding: 2.7rem 2rem 1.8rem 2.5rem;
  border-radius: 1rem;
  display: block;
  text-decoration: none !important;
}

.toolshop_img img {
  transition: 0.2s;
}

.toolshop_box:hover > p {
  text-decoration: underline;
}

.toolshop_box:hover .toolshop_img img {
  transform: scale(1.05);
}

.toolshop_box > p {
  width: 25rem;
  line-height: 2rem;
}

.toolshop_box_bottom h2 {
  color: var(--red);
}

.row.gap_35 > * {
  padding: 0 1.75rem;
}

.row.gap_35 {
  gap: 3.5rem 0;
}

.arrow_back_link img {
  width: 2.6rem;
  transition: 0.2s;
}

.arrow_back_link:hover img {
  transform: translateX(0.5rem);
}

.tollshop_header {
  padding-bottom: 6.2rem;
}

/* ==================== My Cart ==================== */
.Cart_section {
  padding: 6.2rem 0 50rem 0;
}

.increment_decrement button {
  width: 2rem;
  height: 2rem;
  border-radius: 10rem;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.increment_decrement button:hover {
  background: #000;
  color: #fff;
}

.increment_decrement {
  gap: 1rem;
}

.increse_items {
  text-align: center;
  padding: 0 5rem;
}

.cart_img img {
  width: 13.6rem;
}

.item_info p.f_500 {
  line-height: 1.3;
}

.cart_item {
  position: relative;
}

.cart_item .text_14 {
  padding-bottom: 2rem;
}

.item_price p.f_500 {
  white-space: nowrap;
}

.item_info {
  padding-left: 2.2rem;
}

.item_info .text_14 {
  padding-bottom: 0.5rem;
}

.cart_item {
  border-radius: 1rem;
  border: 0.1rem solid #f1f1f1;
}

.cart_item:not(:last-child) {
  margin-bottom: 1.2rem;
}

.incre_decre_output {
  width: 2rem;
}
.summery > h2 {
  padding-bottom: 2.5rem;
}

.summery_inclusion_top {
  padding-bottom: 1rem;
}

.summery_total {
  padding: 2rem 0;
  border-top: 0.1rem solid #dedede;
  border-bottom: 0.1rem solid #dedede;
  margin: 2rem 0 2.5rem 0;
}

.summery {
  border-radius: 1rem;
  background: #fff;
  padding: 2.4rem 2.8rem 2.8rem 2.8rem;
  border: 0.1rem solid #f1f1f1;
}

.tollshop_header .title_45 {
  position: relative;
}

.text_sm_number {
  position: absolute;
  font-size: 2.5rem;
  color: var(--red);
  right: -3rem;
}

/* ===================== ap1_1 ====================== */
.ap1_1 .hero_content p {
  padding-right: 22rem;
}

/* ================= Chiptuning-Files–1 =================== */
.chiptuning_files_page {
  overflow: visible !important;
}

.Chiptuning_section {
  padding: 6rem 0 9.7rem 0;
}

.chiptab_nav {
  height: 5.5rem;
  border: none !important;
  border-right: 0.1rem solid #dcdcdc !important;
  border-radius: 0 !important;
  box-shadow: none;
  outline: none;
  width: 100%;
  padding: 0 2.4rem;
  margin: 0;
  transition: 0.2s ease;
}

.chiptab_nav:hover {
  background: #f6f6f6;
}

.chiptunning_tabs {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  border-radius: 10rem;
  overflow: hidden;
  background: #fff;
  border: 0.1rem solid #dcdcdc;
  width: 100%;
}

.chiptab_nav.active {
  background: #ee322f !important;
}

.white_arrow_down {
  width: 1rem;
}

.chiptab_nav p {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
}

.chiptab_nav.active p {
  color: #fff;
}

.chiptab_nav.active .chiptab_btn_icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(197deg) brightness(101%) contrast(103%);
}

.chiptab_nav .chiptab_btn_icon img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(96%) saturate(0%)
    hue-rotate(108deg) brightness(93%) contrast(103%);
  width: 3.5rem;
}

.select img {
  width: 1rem;
  transform: rotate(90deg);
  transition: 0.2s ease;
}

.select_wrap.active .select img {
  transform: rotate(270deg);
}

.select {
  background: #f6f6f6;
  border-radius: 10rem;
  height: 5.5rem;
  padding: 0 2.5rem;
  cursor: pointer;
}

.selecters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.7rem;
}

.select img {
  transform: rotate(90deg);
}

.select_dropdown {
  background: #fff;
  padding: 1.5rem 1.5rem 1rem 1rem;
  box-shadow: var(--boxShadow);
  border-radius: 0.5rem;
  height: 34rem;
}

.select_list {
  overflow-y: auto;
  height: 100%;
  padding-right: 2.5rem;
}

.select_text {
  height: 5rem;
  border-bottom: 0.1rem solid #f1f1f1;
  display: flex;
  align-items: center;
  transition: 0.2s ease;
  cursor: pointer;
  font-size: 1.4rem;
}

.select_list p:hover {
  background: #f6f6f6;
  padding-left: 1rem;
}

.select_dropdown {
  transform: translateY(2.5rem);
  position: absolute;
  width: 100%;
  z-index: 99;
  pointer-events: none;
  transform: scale(0.75) translateY(2.5rem);
  opacity: 0;
  transition: 0.3s ease;
}

.select_wrap.active .select_dropdown {
  transform: scale(1) translateY(2.5rem);
  opacity: 1;
  pointer-events: all;
}

.select_wrap {
  position: relative;
}

.engine_part1 img {
  width: 14rem;
}

.engine_part1_cont {
  padding-left: 4rem;
}

.engine_area {
  padding: 5.1rem 4.4rem 4.4rem 3.6rem;
  background: #f6f6f6;
  border-radius: 1.7rem;
  margin-top: 2.7rem;
}

.engine_part2_left img {
  width: 8.5rem;
  margin-top: 3.5rem;
}

.engine_part2_left {
  padding-right: 5rem;
}

.engine_part2_right {
  width: 31.9rem;
  display: grid;
  gap: 1.2rem;
}

/* Progress bars */
.chiptunning_progressbars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8rem;
}

.progressbar {
  background: #ececec;
  border-radius: 10rem;
}

.progress {
  width: 0%;
  background: #000000;
  border-radius: 10rem;
  height: 0.7rem;
  transition: 1.5s ease;
}

.progressbar.red .progress {
  background: #ee322f;
}

.tab-pane.active.show .progressbar.one .progress {
  width: 20%;
}

.tab-pane.active.show .progressbar.two .progress {
  width: 50%;
}

.tab-pane.active.show .progressbar.three .progress {
  width: 30%;
}

.text_red {
  color: var(--red) !important;
}

/* chiptunning_part_two */
.chiptunning_part_two .chiptunning_tabs {
  display: flex !important;
  width: fit-content;
}

.chiptunning_part_two .chiptab_nav {
  width: fit-content;
}

.chiptunning_part_two .chiptab_nav {
  height: 4.5rem;
  padding: 0 5rem;
}
.chiptunning_services img {
  width: 3rem;
}

.chiptunning_service_icon {
  height: 3.2rem;
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem;
}

.chiptunning_service {
  width: 13.9rem;
  height: 9.2rem;
  background: #fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.chiptunning_part_two_infos {
  background: #f6f6f6;
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  border-radius: 1.7rem;
  margin: 4rem 0 3.2rem 0;
}

.chiptunning_services {
  gap: 1.5rem;
}

.media_info {
  padding: 2.3rem 13.5rem 2.8rem 3rem;
  background: #fff;
  border-radius: 1.7rem;
}

.Dyno_Chart {
  background: #f6f6f6;
  padding: 2.8rem 2.4rem 5.5rem 1.8rem;
  border-radius: 1.7rem;
}

.chiptunning_service p {
  font-weight: 600;
  font-style: italic;
}

.chiptuning_btn .button:hover:before {
  z-index: 1;
}

.chiptuning_btn .button:hover p {
  z-index: 1;
}

/* update */
.chiptunning_service:nth-child(2) img {
  width: 3.4rem;
}

.chiptunning_service:nth-child(4) img {
  width: 4rem;
}

.chiptunning_service:nth-child(6) img {
  width: 4.3rem;
}

/* ====================== Tool cat Shop cat 1 ======================= */
.tool_shop_cart1_box img {
  width: auto;
}
.tool_shop_cart1_box {
  padding: 7rem 0 5rem;
  border-radius: 3.8rem;
  border: 0.1rem solid #f1f1f1;
  height: 26.8rem;
  display: grid;
  align-content: end;
  border-radius: 2rem;
}

.tool_shop_cart1_box_img img {
  width: 9rem;
}

.tool_shop_cart1 .row > * {
  padding: 0 1.75rem;
}

.tool_shop_cart1 .row {
  gap: 3rem 0;
}

.tool_shop_cart1 {
  padding: 6.2rem 0 16rem 0;
}

/* ======================= toolshop-cat-open-1 ======================== */
/* --------- Owl Setup Styles ---------- */
.owl-stage {
  width: 100%;
  display: flex;
  cursor: grab;
}

.owl-stage-outer {
  width: 100%;
  overflow: hidden;
}

.owl-nav {
  display: none;
}

/* --------- Owl Setup Styles ---------- */

.bottom-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  background: transparent;
  margin-top: 2rem;
}

.toolshop_slider_bottom {
  margin-top: 2.7rem;
}

.item img {
  width: 42.7rem;
}

.item {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 0;
  border-radius: 1rem;
}

.bottom-imgs a img {
  width: 8.3rem;
  transition: 0.2s;
}

.bottom-imgs a:hover img {
  transform: scale(1.1);
}

.bottom-imgs a {
  padding: 2.2rem 0;
  display: flex;
  justify-content: center;
  background: #fff;
  border-radius: 1rem;
}

.toolshop_slider_content p:nth-child(2) {
  border-bottom: 0.1rem solid #dedede;
  border-top: 0.1rem solid #dedede;
}

.toolshop_slider_content h2 {
  padding-right: 6rem;
  line-height: 3rem;
}

.toolshop_slider_content p:nth-child(3) {
  color: #5e5e5e;
  line-height: 2.4rem;
  padding-right: 8.4rem;
  border-bottom: 0.1rem solid #dedede;
  padding-bottom: 3.6rem;
}

.tsb_left p {
  border: none !important;
}

.toolshop_shop_slider .incre_decre_output {
  width: 5.1rem;
  height: 5.1rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  font-weight: 500 !important;
  border: 0.1rem solid #dedede;
}

.toolshop_shop_slider .incre_decre_output:hover {
  background: #f1f1f1;
}

.increment_decrement.v2 button {
  background: #fff;
}

.increment_buttons {
  display: grid;
  gap: 0.7rem;
}

.add_to_cart_button p {
  border: none !important;
}

.add_to_cart_button {
  display: flex;
  align-items: center;
}

.add_to_cart_button p:nth-child(1) {
  background: #ee322f;
  height: 5rem;
  width: 5rem;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin-right: 4.5rem;
}

.add_to_cart_button p:nth-child(1) span {
  font-size: 2.2rem;
  color: #fff;
  width: fit-content;
  transition: 0.3s;
  line-height: 0.1;
}

.add_to_cart_button:hover p:nth-child(1) span {
  transform: rotate(90deg) translateX(0rem) translateY(0.1rem);
}

.add_to_cart_button {
  padding: 0 6rem 0 0;
  background: #fff;
  border-radius: 10rem;
}

.add_to_cart_button p {
  font-weight: 500;
  transition: 0.2s;
}

.add_to_cart_button:hover p:nth-child(2) {
  transform: translateX(-1rem);
}

.toolshop_shop_slider .row1 > * {
  padding: 0 2.75rem;
}
.toolshop_shop_slider .row.row1 {
  width: calc(100% + 5.5rem);
  margin-left: -2.75rem;
}

.increment_decrement.v2 button:hover {
  background: #000;
}

/* ================================ Extra Options ================================= */
.toolshop-cap-open-1 {
  overflow: visible;
}

.radio {
  border: 0.1rem solid #dcdcdc;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio_inner {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--red);
  border-radius: 10rem;
  opacity: 0;
  transition: 0.2s;
}

.radio.active .radio_inner {
  opacity: 1;
}

.ext_option > div p {
  padding-left: 1.7rem;
}

.ext_arrow img {
  transform: rotate(90deg);
  transition: 0.2s;
}

.extrac_options_wrap.active .ext_arrow img {
  transform: rotate(-90deg);
}

.ext_option_selected .ext_arrow {
  padding-left: 2rem;
  border-left: 0.1rem solid #dedede;
  opacity: 1;
}

.ext_arrow {
  opacity: 0;
}

.ext_option {
  cursor: pointer;
}

.extrac_options_wrap {
  background: #fff;
  padding: 1.1rem 2rem 0 2rem;
  position: relative;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.extrac_options_wrap:not(.active) {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.extra_options_dropdown {
  display: grid;
  gap: 1.3rem;
  overflow-y: auto;
  overflow-x: hidden;
  height: 26rem;
  width: 100%;
}

.extra_options_dropdown_wrap {
  position: absolute;
  background: #fff;
  left: 0;
  height: 0;
  overflow: hidden;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  width: 100%;
  transition: 0.5s ease;
  padding: 0 2rem;
}

.extrac_options_wrap.active .extra_options_dropdown_wrap {
  height: 28rem;
  opacity: 1;
  padding: 0rem 2rem 1.1rem 2rem;
}

.ext_option_selected {
  padding-bottom: 1.2rem;
}

.description_texts {
  background: #fff;
  padding: 5rem 9rem 2.6rem 5.5rem;
  border-radius: 1rem;
}

.toolshop_shop_slider {
  padding: 6.5rem 0 12rem 0;
}

/* ======================= Checkout Page ====================== */
.mycart-checkout-1 {
  overflow: visible;
}

.pay_card:nth-child(1) .pay_card_img img {
  width: 10.3rem;
}

.pay_card:nth-child(2) .pay_card_img img {
  width: 7.2rem;
}

.pay_card {
  height: 27rem;
  background: transparent;
  display: grid;
  align-content: center;
  border-radius: 1rem;
  background: #f1f1f1;
  transition: 0.2s;
  border: 0.1rem solid #f1f1f1;
  cursor: pointer;
}

.pay_card.active,
.pay_card:hover {
  background: transparent;
  border: 0.2rem solid #f1f1f1;
}

.payment_cards {
  gap: 2.5rem;
  margin-top: 6.5rem;
}

.form_arrow {
  position: absolute;
  width: 1.7rem;
  right: 0;
  transition: 0.3s ease;
}

.form_group {
  position: relative;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}

.input_field {
  width: 100%;
  height: 6rem;
  border: none;
  border-bottom: 0.1rem solid #dbdbdb;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0f0f0f;
  background: transparent;
  padding-right: 2.5rem;
}

.input_field::placeholder {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0f0f0f;
}

.anim_left_to_right .form_arrow {
  right: 10%;
  opacity: 0;
}

.anim_left_to_right.active .form_arrow {
  opacity: 1;
  right: 0;
}

.anim_left_to_right.active .input_field {
  border-color: #8b8b8b;
}

.anim_left_to_right .form_arrow,
.anim_right_to_left .form_arrow {
  transform: rotate(90deg);
}

.label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form_group.active .label {
  display: none;
}

.anim_right_to_left .form_arrow {
  opacity: 0;
}

.anim_right_to_left.active .form_group_inner {
  width: 90%;
}

.anim_right_to_left.active .form_arrow {
  opacity: 1;
}

.form_group_inner {
  position: relative;
  transition: 0.3s;
  width: 100%;
  display: flex;
  align-items: center;
}

.form_groups .form_group:first-child {
  width: 60%;
}

.form_groups .form_group:last-child {
  width: 40%;
}

.form_groups {
  gap: 2.2rem;
}

.input_dropdown {
  position: absolute;
  width: 100%;
  transform: translateY(2rem) scale(0.5);
  transition: 0.3s ease;
  background: #fff;
  opacity: 0;
  z-index: 99;
  pointer-events: none;
  box-shadow: var(--boxShadow);
  padding: 1rem;
  border-radius: 0.5rem;
}

.select_input.active .input_dropdown {
  transform: translateY(1rem) scale(1);
  opacity: 1;
  pointer-events: all;
}

.select_option {
  height: 4rem;
  padding-left: 2rem;
  display: flex;
  align-items: center;
  border-bottom: 0.1rem solid #f1f1f1;
  transition: 0.2s;
  cursor: pointer;
}

.select_option:hover {
  background: #f1f1f1;
}

.selected_option {
  cursor: pointer;
}

.select_option:last-child {
  border: none;
}

.select_input.active .selected_option img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(1%) saturate(4%)
    hue-rotate(5deg) brightness(92%) contrast(98%);
}

.select_input .selected_option img {
  top: auto;
  right: 0.5rem;
}

.checkout_section .row > * {
  padding: 0 5rem;
}

.anim_fade .form_arrow {
  top: auto;
  opacity: 0;
}

.anim_fade.active .form_arrow,
.anim_fade:hover .form_arrow {
  opacity: 1;
}

.anim_fade:hover .default_text {
  display: none;
}

.hidden_text {
  display: none;
}

.anim_fade:hover .hidden_text {
  display: block;
}

.opacity_0 {
  opacity: 0;
}

.calling_code_selector {
  position: relative;
}

.calling_code_wrap {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(10rem) scale(0.6);
  background: #fff;
  z-index: 99;
  pointer-events: none;
  transition: 0.2s ease;
  padding: 1rem;
  box-shadow: var(--boxShadow);
  border-radius: 0.5rem;
}

.calling_code_selector.active .calling_code_wrap {
  opacity: 1;
  pointer-events: all;
  transform: translateY(11rem) scale(1);
}

.calling_code_wrap .form_arrow {
  position: relative;
}

.calling_code_selector_right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.calling_code_selector_right .form_arrow {
  position: relative;
  top: auto;
  transform: translateY(0);
}

.calling_code_selector.active .form_arrow,
.calling_code_selector:hover .form_arrow {
  filter: brightness(0) saturate(100%) invert(95%) sepia(1%) saturate(4%)
    hue-rotate(5deg) brightness(92%) contrast(98%);
}

.selected_calling_code {
  height: 6rem;
  border: none;
  border-bottom: 0.1rem solid #dbdbdb;
  cursor: pointer;
}

.calling_code_wrap .select_calling_code:not(last-child) {
  border-bottom: 0.1rem solid #f1f1f1;
}

.calling_code_wrap .select_calling_code {
  height: 4rem;
  padding: 0 2rem 0 1.5rem;
}

.calling_code_wrap .select_calling_code:hover {
  background: #f1f1f1;
}

.select_input {
  width: 100%;
}

.select_calling_code {
  width: 100%;
}

.form_section {
  margin-top: 7rem;
}

.checkout_navs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.checkout_nav {
  padding-bottom: 1.5rem;
  border-bottom: 0.4rem solid #dedede;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: #dcdcdc;
}

.checkout_nav.active {
  border-color: var(--red);
  color: #000;
}

.checkout_section {
  padding: 6.5rem 0 25.4rem 0;
}

.form_button .button {
  padding: 0 9.7rem;
  height: 5.5rem;
}

.checkout_summery .summery_total {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.form_group.highlight .credit_form_text_right {
  display: none;
}

.credit_block2 h3 {
  padding-bottom: 0.5rem;
}

.form_group.highlight label {
  display: none;
}

/* ================================= Modal ================================ */
.credit_input_icon {
  width: 2rem;
  position: absolute;
  left: 1.7rem;
}

.credit_input {
  height: 5rem;
  padding-left: 4.8rem;
  width: 100%;
  border: 0.1rem solid #dbdbdb;
  border-radius: 0.5rem;
}

.credit_form_text_right {
  position: absolute;
  right: 1.3rem;
}

.modal-body {
  padding: 3.7rem 2.1rem 2.5rem 2.1rem;
}

.button_red {
  background: var(--red);
  color: #fff;
  border: none !important;
  justify-content: center;
}

.button_red:hover {
  background: rgb(238, 50, 47, 0.9);
}

.modal_close {
  position: absolute;
  right: 0;
  padding: 0;
}

.modal_close.close img {
  width: 2rem;
}

button.modal_close.close {
  right: -2rem;
  top: -2rem;
}
.modal-dialog {
  max-width: 55rem;
}

.cart_header {
  z-index: 99 !important;
}

/* =============== cart_icon_wrap =============== */
.cart_icon_wrap {
  position: fixed;
  bottom: 4rem;
  right: 4rem;
}

.cart_icon {
  background: #fff;
  height: 5.5rem;
  width: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--boxShadow);
  border-radius: 10rem;
}

.cart_icon img {
  width: 2.5rem;
}

.cart_icon_wrap {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
}

.cart_icon {
  background: #fff;
  height: 5.5rem;
  width: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--boxShadow);
  border-radius: 10rem;
}

.cart_icon img {
  width: 2.5rem;
}

.one_sm {
  color: #ee322f;
  font-size: 1rem;
}

.cart_icon_wrap p {
  display: flex;
  gap: 0.5rem;
}

.cart_icon_wrap:hover .cart_icon {
  background: var(--red);
}

.cart_icon_wrap:hover .cart_icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(163deg) brightness(100%) contrast(103%);
}

.cart_icon_wrap {
  text-decoration: none !important;
}

/* ============================================== Added code ============================================== */
.user_icon_v2 img {
  width: 2rem;
}

.user_icon_v2:hover {
  text-decoration: none;
}

#menumodal .modal-dialog {
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
  max-width: 33rem;
}

.side_menu .primary_menu {
  display: grid;
  gap: 4rem;
  padding: 4.2rem;
  border-top: 0.3rem solid #dfdfdf;
}

.side_menu {
  height: 100vh;
  display: grid;
  align-content: space-between;
  padding-top: var(--header_height);
  overflow-y: auto;
  scrollbar-width: 0;
}

.side_menu::-webkit-scrollbar {
  scrollbar-width: 0;
  display: none;
}

#menumodal .modal-content {
  border-radius: 0;
  border: none;
}

#menumodal .modal-body {
  padding: 0;
}

.user_icon_v2 {
  padding: 2.3rem 1rem;
  font-weight: 600;
  background: #ee322f;
  width: 100%;
  color: #fff;
  font-size: 1.4rem;
  gap: 2.3rem;
}

.side_menu_bottom {
  margin-top: 3rem;
}

.side_menu .menu_link:before {
  display: none;
}

.user_icon_v2 img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(288deg) brightness(102%) contrast(102%);
  width: 1.8rem;
}

.shopping_cart_icon {
  width: 2.5rem !important;
}

.dots_cross {
  opacity: 0;
}

.dots_cross.three_dots {
  opacity: 1;
  width: 3rem;
}

.dots_cross.three_dots > * {
  top: 50%;
  transform: translateY(-50%);
}

.dots_cross.three_dots .one {
  left: 0;
}

.dots_cross.three_dots .two {
  left: 50%;
  transform: translate(-50%, -50%);
}

.dots_cross.three_dots .three {
  right: 0;
}

.three_dots_toggle.active .three_dots {
  opacity: 0;
}

.three_dots_toggle.active .dots_cross:not(.three_dots) {
  opacity: 1;
}

/* dots */
.side_menu_modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  right: -100%;
  top: 0;
  transition: 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.layer {
  width: 100%;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background: #0000005e;
}

.side_menu {
  position: relative;
  background: #fff;
  width: 39rem;
  margin-left: auto;
}

.side_menu_modal.active {
  opacity: 1;
  pointer-events: all;
  right: 0;
}

.dots_cross span {
  width: 0.5rem;
  height: 0.5rem;
  background: #000;
  display: block;
  position: absolute;
  transform: rotate(45deg);
}

.dots_cross {
  width: 2.3rem;
  position: relative;
  height: 2.3rem;
}

.dots_cross:not(.three_dots) .one {
  top: 0;
  left: 0;
}

.dots_cross:not(.three_dots) .two {
  right: 0;
  top: 0;
}

.dots_cross:not(.three_dots) .three {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

.dots_cross:not(.three_dots) .four {
  left: 0;
  bottom: 0;
}

.dots_cross:not(.three_dots) .five {
  bottom: 0;
  right: 0;
}
