:root {
    --font-bold: "VolvoNovum-Medium", sans-serif;
    --font-ligh: 'VolvoNovum-Light', Helvetica Neue, -apple-system, "system-ui", BlinkMacSystemFont, sans-serif;
    --font-black: "bmwtypenext_light", Helvetica Neue, -apple-system, "system-ui", BlinkMacSystemFont, serif;
    --font-regular: 'VolvoNovum-Regular', Helvetica Neue, -apple-system, "system-ui", BlinkMacSystemFont, sans-serif;
    --font-semibold: "bmwtypenext_light", Helvetica Neue, -apple-system, "system-ui", BlinkMacSystemFont, serif;
    --color-primary:#2A609D;
    --color-secondary:#CED9E5;
}
#calculadora_carga .cont-btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
#calculadora_carga .cont-btn a{
    background: var(--color-primary);
    text-transform: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.ficha-producto {
    background: #fff!important;
}
#calculadora_carga {
    width: 1448px;
    max-width: 90%;
    margin: 55px auto;
}

/* Header */

#calculadora_carga .header {
    text-align: center;
    margin-bottom: 48px;
    border-bottom:none;
}

#calculadora_carga .header h1 {
    font-family: var(--font-bold);
    font-size: 32px;
    line-height: 42px;
    color: #000000;
    margin-bottom: 24px;
}

#calculadora_carga .header p {
    font-family: var(--font-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #414141;
}

/* Main Content */

#calculadora_carga .main-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Main content left-section */

#calculadora_carga .main-content .left-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#calculadora_carga .main-content .left-section .model-selection {
    text-align: center;
    padding: 18px 0;
}

#calculadora_carga .main-content .left-section .model-selection h2 {
    font-size: 1.5rem;
    font-family: var(--font-bold);
    line-height: 34px;
    color: #000000;
    margin-bottom: 32px;
    margin-top: 40px;
}

#calculadora_carga .main-content .left-section .model-selection .car-image {
    width: 100%;
    /*height: 200px;*/
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
}

#calculadora_carga .main-content .left-section .model-selection .car-image .car-svg {
    width: 80%;
    height: 80%;
    fill: #e0e0e0;
}

#calculadora_carga .main-content .left-section .model-selection .dropdown {
    position: relative;
    width: 100%;
}

#calculadora_carga .main-content .left-section .model-selection .dropdown.open .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

#calculadora_carga .main-content .left-section .model-selection .dropdown.open .dropdown-menu {
    max-height: 300px;
    border-color: var(--color-primary);
}

#calculadora_carga .main-content .left-section .model-selection .dropdown .dropdown-button {
    width: 100%;
    padding: 12px;
    border: 1px solid #b8b8b8;
    border-radius: 3px;
    /* background: #F1F1F1; */
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    font-family: var(--font-regular);
    color: #414141;
    appearance: none;
    background-image: none;
}

#calculadora_carga .main-content .left-section .model-selection .dropdown .dropdown-arrow {
    transition: transform 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3%;
    pointer-events: none;
    margin: 0;
}

#calculadora_carga .main-content .left-section .model-selection .dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F1F1F1;
    border-top: none;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

#calculadora_carga .main-content .left-section .model-selection .dropdown .dropdown-menu .dropdown-item {
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 1rem;
    line-height: 22px;
    font-family: var(--font-regular);
    font-weight: 400;
    color: #414141;
}

/* Main content right-section */

#calculadora_carga .main-content .right-section {
    border: 1px solid #B3B3B3;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
#calculadora_carga .main-content .right-section .section-title {
    display: flex;
    gap: 18px;
    font-family: var(--font-bold);
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 32px;
    color: #000000;
    align-items: center;
}

#calculadora_carga .main-content .right-section .section-title .info-icon,
#calculadora_carga .results .result-card .result-header .info-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--color-primary);
    cursor: pointer;
    font-family: monospace;
    position: relative;
    font-weight:700;
}

#calculadora_carga .main-content .right-section .section-title .info-icon .tooltip,
#calculadora_carga .results .result-card .result-header .info-icon .tooltip{
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #414141;
  padding: 6px 10px;
  border-radius: 6px;
  font-family: var(--font-semibold);
  font-size: 12px;
  /*white-space: nowrap;*/
  width: 236px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#calculadora_carga .main-content .right-section .section-title .info-icon:hover .tooltip,
#calculadora_carga .results .result-card .result-header .info-icon:hover .tooltip{
  opacity: 1;
}

/* Range Slider */

#calculadora_carga .main-content .right-section .range-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#calculadora_carga .main-content .right-section .charging-options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

#calculadora_carga .main-content .right-section .range-container {
    position: relative;
    margin: 20px 0;
}

#calculadora_carga .main-content .right-section .range-container .range-track {
    position: relative;
    height: 8px;
    background: #ededed;
    border-radius: 4px;
    margin: 20px 0;
}

#calculadora_carga .main-content .right-section .range-container .range-track .range-slider {
    position: absolute;
    height: 100%;
    background: var(--color-primary);
    border-radius: 4px;
    transition: all 0.1s ease;
}

#calculadora_carga .main-content .right-section .range-container .range-track .range-thumb {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
}

#calculadora_carga .main-content .right-section .range-container .range-track .range-thumb .slider-value {
    position: relative;
    top: -30px;
}

#calculadora_carga .main-content .right-section .range-container .range-track .range-thumb-arrow {
    position: absolute;
    width: 0;
    height: 68px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%) translateX(-15px);
    transition: all 0.1s ease;
}

#calculadora_carga .main-content .right-section .range-container .range-track .range-thumb-arrow .slider-value {
    position: relative;
    top: -6px;
}

#calculadora_carga .main-content .right-section .range-percentage {
    display: flex;
    justify-content: space-between;
}

#calculadora_carga .main-content .right-section .range-percentage span {
    font-weight: 400;
    font-family: var(--font-regular);
    font-size: 12px;
    line-height: 16px;
    color: #565656;
}

#calculadora_carga .main-content .right-section .charging-option {
    text-align: center;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

#calculadora_carga .main-content .right-section .charging-option.active {
    background: #EDEDED;
}

#calculadora_carga .main-content .right-section .charging-option.active .charging-label {
    color: #000;
}

#calculadora_carga .main-content .right-section .charging-option.active svg path[fill="#414141"] {
  fill: #000;
}

#calculadora_carga .main-content .right-section .charging-option .charging-label{
    font-family: var(--font-regular);
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
}

#calculadora_carga .text-info {
    text-align: center;
    font-weight: 400;
    font-family: var(--font-regular);
    font-size: 12px;
    line-height: 16px;
    color: #414141;
    margin-top: 55px;
}

/* Results */

#calculadora_carga .results {
    display: flex;
    gap: 100px;
    background: #f5f5f5;
    padding: 50px 88px;
}

#calculadora_carga .results .result-card {
    width: 100%;
}

#calculadora_carga .results .bar {
    width: 1px;
    /*border: 1px solid;*/
    color: #CCCCCC;
}

#calculadora_carga .results .result-card .result-header {
    display: flex;
    gap: 16px;
    margin-bottom: 17px;
    align-items: center;
    font-family: var(--font-regular);
    font-size: 18px;
    line-height: 26px;
    color: #414141;
}

#calculadora_carga .results .result-card .result-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#calculadora_carga .results .result-card .result-time .result-value {
    font-family: var(--font-bold);
    font-size: 48px;
    line-height: 58px;
    color: #000000;
}

@media (max-width: 1200px) {
    #calculadora_carga .main-content,
    #calculadora_carga .main-content .right-section .charging-options {
        grid-template-columns: 1fr;
    }
    
    #calculadora_carga .results { 
        flex-direction: column;
    }
    
    #calculadora_carga .results .bar {
        width: 100%;
    }
    
    #calculadora_carga .results .result-card .result-header {
        justify-content: center;
    }
}

@media (max-width: 550px) {
    #calculadora_carga .results {
        padding: 40px 44px;
    }
    
    #calculadora_carga .results .result-card .result-time .result-value {
        font-size: 24px;
    }
}
