/* body{
    font-family: Helvetica, Arial, sans-serif;
    background-color: #c54d4d !important;
} */
:root {
    --black: #2d2d2d;
    --secondary-color: #157be1;
    --primary: #5f5f5f;
    --border-color: #ececec;
    --box-border-medium: 1px solid #cacaca;
    --box-border-hard: 1px solid #c1c1c1;
    /* --box-shadow-light: 0 0 10px 0 rgba(0, 0, 0, 0.02); */
    --box-shadow-light: 0 0 6px 0 rgba(0, 0, 0, 0.06);
    --box-shadow-strong: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    --box-shadow-theme: 0 0 5px 0 var(--primary);
    --arrow-svg-color: #cccaca;
  }


  .cls-1{
    fill: rgb(36, 36, 36) !important;
  }
  .cls-2{fill: var(--additional-services-secondary-color) !important}

body{
  /* height:400px;
  width:900px; */
  /* width:500px; */
  /* make transparent background */
  /* height:400px !important; */
  /* background: rgba(0, 0, 0, 0); */
  /* background: none transparent; */
  background: transparent !important;

  /* overflow: hidden; */
  /* background-color: #5f5f5f !important; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
}
html{
  /* height:400px !important; */

  /* overflow-x: hidden; */
}
html {
  background-color: transparent !important;
  background: transparent !important;
}
 
.nolicense{
    margin-top: 30px;
    padding:30px;
    /* height: 130vh; */
    border-radius: 5px;
    padding-left: 60px;
    padding-right: 60px;
    height:200px;
    background-color: rgb(255, 237, 178);
    /* background-color: white; */
    /* background-color: rgb(90, 178, 194); */
    width: 900px;
    display: flex;
    /* justify-content: center; */
    /* position: absolute; */
    /* align-items: center; */
    gap:20px;
    flex-direction: column;
    /* margin-left: 400px; */
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}
.bigparent{
  margin-top: 1rem;
  /* make transparent */
  /* background: rgba(0, 0, 0, 0);
   */
  background: transparent;
 
  /* make it transparent for iframe */

  /* background-color: orange; */
  /* display: none; */
  /* scale:0; */
}
.social {
  display: none; /* Initially hidden */
  position: fixed;
  min-width:20rem;
  flex-direction: column;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 1001;
  background-color: rgb(247, 246, 246);
  /* background-color: #1da1f2; */
  padding: 1rem;
  border-radius: 0.7rem;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0; /* Start fully transparent */
}

.thecover {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 140%;
  height: 140%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  transition: background 0.3s ease-out, backdrop-filter 0.3s ease-out;
  z-index: 1000;
}

.social.show {
  transform: translate(-50%, -50%) scale(1.0);
  opacity: 1;
}

.thecover.show {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  /* dont allow clicking */
  /* pointer-events: none; */
  /* dont allow scrolling on android */
  
}




.hidden {
    display:none !important;
}
.hidden-scale{
  scale:0;
}
.blurred{
    filter: blur(10px);
}
.loader {
  width: 24px;
  height: 24px;
  border: 4px solid #FFF;
  border-bottom-color: var(--search-loading-animation-color);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute;
  z-index: 99;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
  @keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
  } 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rajdhani", sans-serif;
  }

/* Initial blurred state with animation to remove blur */


/* Keyframes for unblurring */
@keyframes unblur {
    to {
        filter: none;
    }
}

  .service-items-container {
    margin-top:1rem;
    display: flex;
    width: 100%;
  }
  
  .service-items:not(:only-child) {
    justify-content: center;
  }
  
  .services{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    width:100%;
    padding-bottom: 1rem;
    /* justify-content: center; */


  }

  .service-name{
    font-size: 1.1rem;
    font-weight: 600;
  }
  .service-items {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap onto the next line */
    justify-content: center; /* Aligns items to the start of the flex container */
    gap: 1rem; /* Optional: adds space between items */
}
.additional-info{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding:2rem;
}
.error-plate{
  display: flex;
  /* align-self: flex-end; */
  /* background-color: aquamarine; */
  padding:2rem;
  width:100%;
  flex-direction: column;
  align-items: center;
}
.info-table{
    /* padding:2rem; */
    /* padding-top:1rem; */
}
.car-details{
    display: flex;
    /* background-color: aquamarine; */
    padding:2rem;
    width:100%;
    flex-direction: column;
    align-items: center;
}
.car-details-item{
    /* background-color: #e5c4c4; */
    width:100%;
    /* justify-content: center; */
    height: 100%;
    display: flex;
    gap:3rem;
    flex-direction: row;
    align-items: center;

}
.car-details-result > table {
  margin-top: 1.2rem;
}
.car-details-result > table > tbody > tr > td {
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide overflowed content */
  text-overflow: ellipsis; /* Add an ellipsis (...) at the end of the clipped content */
}
.car-details-result > table > tbody > tr > td:first-child {
  padding: .2rem;
  padding-left: 0;
  /* padding-right: 4rem; */
  font-weight: 700;
  font-size: 1.1rem;
}
.car-details-result > table > tbody > tr > td:last-child {
  padding: .2rem;
  padding-left: 6rem;
  /* padding-right: 6rem; */
  font-weight: 600;
  font-size: 1.1rem;
}


.info-table > table {
  margin-top: 1.2rem;
}
.info-table > table > tbody > tr > td:first-child {
  padding: .6rem;
  padding-left: 0;
  width: 10rem;
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.info-table > table > tbody > tr > td:last-child {
  padding: .2rem;
  max-width: 40%;
  padding-left: 0;
  /* padding-right: 6rem; */
  font-weight: 600;
  font-size: 1.1rem;
  /* white-space: nowrap; */
  /* overflow: hidden; */
  /* text-overflow: ellipsis; */
}


.car-details-result-name{
    font-size: 1.5rem;
    font-weight: 800;
}
.brand-image-container{
height:130px; 
min-width:35%;
/* width:180px; */
    display: flex;
    justify-content: center;

/* background-color: #ededed; */
padding:1rem;
border: 1px solid var(--border-color);
box-shadow: var(--box-shadow-light);
border-radius: 4px;
}

.brand-image-container img {
  filter: blur(8px);
  animation: unblur 0.3s ease-out 0.3s forwards;
}

.brand-image{
    height: 100%;
    /* width: 100%; */
}

svg{
    /* background-color: #7c7b7b; */
    /* border: 1px solid red; */
}






.tippy-tooltip.white-theme {
    background-color: white;
    color: rgb(255, 255, 255); /* Adjust text color if needed */
    border: 1px solid gray; /* Optional: add a border if you like */
  }
  .tippy-box[data-theme~='tomato'] {
    background-color: rgb(253, 253, 253);
    color: rgb(0, 0, 0);
    border: 1px solid rgb(233, 233, 233);
    box-shadow: var(--box-shadow-light);
  }

  .tippy-box[data-theme~='tomato'][data-placement^='top'] > .tippy-arrow::before {
    border-top-color: rgb(245, 245, 245);
  }
  .tippy-box[data-theme~='tomato'][data-placement^='bottom'] > .tippy-arrow::before {
    border-bottom-color: rgb(245, 245, 245);
  }
  .tippy-box[data-theme~='tomato'][data-placement^='left'] > .tippy-arrow::before {
    border-left-color: rgb(245, 245, 245);
  }
  .tippy-box[data-theme~='tomato'][data-placement^='right'] > .tippy-arrow::before {
    border-right-color: rgb(245, 245, 245);
  }
  .select-menu.model svg {
    width: 16px; /* adjust the width of the SVG icon */
    height: 16px; /* adjust the height of the SVG icon */
  }
.service-item {
    overflow: hidden;
    /* background-color: #7bb7e2; */
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    /* background-color: rebeccapurple; */
    width: 200px;
    border:1px solid var(--border-color);
    /* add some shadow */
    box-shadow: var(--box-shadow-light);
    height: 100px; /* Example height, adjust as needed */
    flex: 0 0 auto; /* Do not grow, do not shrink, auto basis */
}
/* .service-item svg{
    height:70px;
} */
.service-item svg{
    height:70px;
}
.service-item img{
  align-self: flex-end;
  position: absolute;
  padding:.2rem;
  /* scale: .1; */
  height:26px;
}

#calculator{
    width:800px;
    /* background-color: antiquewhite; */
    display: flex;
    flex-direction: column;
    align-items: center;

}
.icon-close-popup {
  font-size: 2rem;
}

.close-top {
  display: flex;
  justify-content: space-between;
}

.close-button {
  /* Match the height of the close button to the font size of the icon */
  height: 2rem;
  /* Optional: Align the button icon vertically to the center */
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in-out;
}

/* Optional: Add hover effect */
.close-button:hover {
  transform: scale(1.1);
}
.bigparent{
    /* margin-top: 30px; */
    /* padding:30px; */
    /* height: 130vh; */
    border-radius: 5px;
    /* padding-left: 60px;
    padding-right: 60px; */
    /* background-color: white; */
    /* background-color: rgb(90, 178, 194); */
    /* width: 900px; */
    /* width: 100%; */
    /* width:1000px; */
    display: flex;
    justify-content: center;
    /* position: absolute; */
    align-items: center;
    gap:20px;
    flex-direction: column;
    /* margin-left: 400px; */
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}
.chart-parent{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    width:100%;
    gap:20px;
}
.power-details {
    display: flex; /* Continue using flexbox */
    align-items: center; /* Center children horizontally */
    width: 100%;
    /* order elements in reverse order */
    gap: 20px; /* Maintain space between children */
}

.highcharts-credits {
    scale: 0;
}
.power-container{
  width:100%;
  display: flex;
  flex-direction: column;
  gap:2rem;
}
#container-power {
    margin: 0px;
    padding: 0px;
    background: white;
    border-radius: 5px;
    /* border: 1px solid rgb(235, 235, 235); */
    border : 1px solid var(--border-color);
    box-shadow: var(--box-shadow-light);
    width: 320px; /* Reduced width to decrease size by 20% */
    height: 320px; /* Adjust height automatically */
}
#container-torque {
    margin: 0px;
    padding: 0px;
    background: white;
    border-radius: 5px;
    border : 1px solid var(--border-color);
    box-shadow: var(--box-shadow-light);

    width: 320px; /* Reduced width to decrease size by 20% */
    height: 320px; /* Adjust height automatically */
}
.highcharts-legend-box, .highcharts-legend-item {
    fill: #ededed !important; 
    align-items: center;
    height: 100%;
    justify-content: center;
}

.side-rectangles {
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack children vertically */
    gap: 10px; /* Space between rectangles */

}



.side-rectangles {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    gap: 10px;
}

.side-rectangles-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center text within each rectangle */
    width: 400px;
    /* width:100% */
    padding: 10px;
    border : 1px solid var(--border-color);
    box-shadow: var(--box-shadow-light);

    box-sizing: border-box;
    border-radius: 5px;
}
.side-rectangles > span{
    font-weight: bold;
    font-size: 18px;
    color: #1c1c1c;
    margin-bottom: 5px;
}
.EnginePower__label {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.side-rectangles-item-result {
    font-weight: bold;
    font-size: 20px;
    color: #7c7b7b;
}

.border-color {
    border-color: black; /* Adjust based on your color preference */
}

.cta {
    color: var(--torque-engine-text-gains-color); /* Example color for the "Difference" */
}

.side-rectangles-item-result span {
    font-size: 16px;
}


/* --------------------------------------- */

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










/* disable text highlight on class dropdown-search */







/* .select-menu > .options-list > .option {
  color: rgb(37, 37, 37);
  padding: 2px 0;
  border-bottom: 1px solid #d3d3d3;
  font-size: 14px;
  font-weight: 600;
} */





















.wrapper {
    display: inline-flex;
    list-style: none;
    height:100%;
    width: 100%;
    padding-top:1rem;
    font-family: "Poppins", sans-serif;
    justify-content: center;
  }
  
  .wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: var(--box-shadow-strong);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* transition: all .5s ease-in-out; */
  }
  
  .wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .wrapper .icon:hover span,
  .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper .facebook:hover,
  .wrapper .facebook:hover .tooltip,
  .wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #fff;
  }
  
  .wrapper .twitter:hover,
  .wrapper .twitter:hover .tooltip,
  .wrapper .twitter:hover .tooltip::before {
    background: #1da1f2;
    color: #fff;
  }
  
  .wrapper .instagram:hover,
  .wrapper .instagram:hover .tooltip,
  .wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
  }
  