.tab__container{
    display: block;
    width: 100%;
    max-width: 1224px;
    margin: auto;
}

.tab__container .tab__title{
    text-align: left;
}

.tab__container .tab__title svg{
    height: 28px;
    width: 28px;
    margin-right: 10px;
}

.tab__container .tab__title h2{
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    margin-block-start: 0.83em;
    box-sizing: inherit;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 1.6rem;
    color: var(--grey9);
    font-family: 'Telefonica-sans-regular';
    font-size: 2.375rem;
    line-height: 3rem;
}

.tab__container .tab__title p{
    display: block;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    box-sizing: inherit;
    padding: 0;
    border: 0;
    font: inherit;
    letter-spacing: .01em;
    margin: 0 0 1.5em;
    font-family: 'Telefonica-sans-regular';
    font-size: 1.0625rem;
    line-height: 1.875rem;
    text-align: justify;
}

.tab__container  .tab__button{
    display: block;
    text-align: right;
}

.tab__container .tab__header{
    display: flex;
    background-color: var(--white);
    width: 100%;
    max-width: 1224px;
    justify-content: space-around;
    justify-content: flex-start;
    flex-shrink:1;
    transition: .3s ease all;
}

.tab__container .tab__header div{
    text-align: center;
    display: inline-block;
    padding: .8rem;
    color: var(--grey3);
    cursor: pointer;
    transition: all 400ms ease;
    border-bottom: 2px solid var(--grey3);
    font-weight: bold;
    width: 100%;
}

.tab__container .tab__header div.active{
    border-bottom: 2px solid var(--blue);
    color: black;
    cursor: default;
}

.tab__container .tab__header div:hover{
    color: var(--grey6);
    background-image: linear-gradient( var(--white), var(--grey1));
}

.tab__container .tab__header div svg{
    height: 20px;
    width: 20px;
    margin-right: 5px;
}

.tab__container .tab__body{
    position: relative;
    margin-top: 20px;
    display: flex;
    max-width: 1224px;
    margin: 15px;
}

.tab__container .tab__body .tab{
    display: none;
    opacity: 0;
    width: 100%;
    margin-top: 5px;
    transition: .3s ease all;
    max-width: 1224px;
}

.tab__container .tab__body .tab.active{
    top: 0px;
    opacity: 1;
    height: auto;
    display: block;
    margin-top: 0px;
    transition: .3s ease all;
    max-width: 1224px;
}