.wrsiExpertPhone > input
{
    width: 100px;
}

.wrsiExpertMobile > input
{
    width: 110px;
}

.wrsiExpertPhoneFree > input
{
    width: 100px;
}

.wrsiExpertCEP > input
{
    width: 70px;
}

.wrsiExpertCPF > input
{
    width: 100px;
}

.wrsiExpertCNPJ > input
{
    width: 125px;
}

.wrsiExpertText
{
    width: 330px;
}

.wrsiAccordion > button
{
    /*
    display: flex;
    flex-direction: column;
    */
    background-color: #a7a7ed;
    background-position-x:calc(100% - 8px);   /* posição do ícone */

    color: #ffffff;
    cursor: pointer;
    padding: 5px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.wrsiAccordion > div
{
    display: none;
    height: auto;
    border: 1px solid;
    background-color: #ffffff;
}

.wrsiTab
{
    display: grid;
    grid-template-areas: 'buttons'
                         'panels';
}

.wrsiTabButtons
{
    grid-area: buttons;
    justify-self: left ;
    background-color: inherit;
}

.wrsiTabPanels
{
    grid-area: panels;
    background-color: inherit;
}

.wrsiTabButton
{
    display: inline-block;
    /* outline: none; */
    background-color: inherit;
    color: #000000;
    font-weight: bolder;
    cursor: pointer;
    margin: 1px;
    padding: 5px;
    width: 200px;
    border: 1px solid black;
    border-bottom: 0px;
    border-radius: 50% 50% 0% 0%;
    outline: none;
    transition: 0.4s;
}

.wrsiTabPanel
{
    display: none;
    height: auto;
    margin: 1px;
    padding: 5px;
    border: 1px solid;
    /* border-top: 0px; */
    background-color: inherit;
}

.wrsiExpertAddress
{
    display: flex;
    flex-direction: column;
}

#address-cep
{
    width: 70px;
}

#address-btnCep
{
    width: 70px;
    height: 20px;
}

#address-street, #address-burgh
{
    width: 300px;
}

#address-uf, #address-city, #address-longitude, #address-latitude
{
    width: 160px;
}

#address-number
{
    width: 50px;
}

#address-complement
{
    width: 220px;
}