﻿#terminos-tarifas-producto-sect {
    min-height: 500px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 0px 25px 0px;
}

.tab-contentTerms h1{
    color: #0a2463 !important;
  font-size: 32px;
  margin-bottom: 20px !important;
  text-transform: none !important;
  text-align: left;
}

#contenedor-global {
    max-width: 65%;
}
.contenedor-infoTerms {
    background-color: #ECF5FE;
    border-radius: 25px;
    padding: 30px;
    overflow: auto;
    height: 380px;
    overflow-y: auto;
}
.tabsTerms {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
    position: relative;
}
.tabTerms{
    width: 120px;
    overflow-wrap: break-word;
    padding: 8px 10px;
    border-radius: 18px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #003366;
    background: none;
    border: none;
    outline: none;
    transition: 0.3s;
    position: relative;
}

.tabTerms.active {
    background-color: #ECF5FE;
}

.tabTerms.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ECF5FE;
}
.tab-contentTerms p{
    font-size: 16px;
    color: #000;
    line-height: 1.5em;
    padding-bottom: 10px;
}

.tab-contentTerms.active {
    display: block;
}
.tab-contentTerms h4 {
    text-transform: uppercase;
    color: #000;
    font-size: 17px;
    padding-bottom: 18px;
    font-weight: bold;
}

.tab-contentTerms h2{
    color: #003366 !important;
    font-size: 19px !important;
}

.tab-contentTerms li{
    color: black !important;
    font-size: 16px !important;
    text-transform: none;
    margin-bottom: 10px !important;
}

.tab-contentTerms td{
    color: black !important;
    font-size: 16px !important;
    text-transform: none;
    margin-bottom: 10px !important;
}

.tab-contentTerms th{
    color: black !important;
    font-size: 17px !important;
    text-transform: none;
    margin-bottom: 10px !important;
}

@media screen and (width <=992px) {
    #contenedor-global {
        max-width: 100%;
    }
    .contenedor-info {
        height: 358px;
    }
    .tab-contentTerms p{
        font-size: 18px;
        color: #000;
    }
}