.erviegas_docs_tabs {
    display: flex;
    gap: 5px;
}
.erviegas_docs_tab {
    background: #1489F612;
    color: #1489F6;
    font-size: 14px;
    padding: 7px 21px;
    font-weight: 700;
    cursor: pointer;
}
.erviegas_docs_tab.active,
.erviegas_docs_tab:hover {
    background: #1489F6;
    color: #fff;
}
.erviegas_docs_accordions {
    background: #fff;
    border: 1px solid #EFEFEF;
    padding: 30px;
    margin-bottom: 20px;
}
.erviegas_docs_tab_content_unique {
    margin-bottom: 20px;
}

.erviegas_docs_accordion {
    background: #fff;
    color: #1D2746;
    width: 100%;
    padding: 15px;
    text-align: left;
    transition: all ease 0.31s;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,.125);
}
.erviegas_docs_accordion_title {
    position: relative;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

.erviegas_docs_accordion_title::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: -5px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(20,137,246,1)'%3E%3Cpath d='M11.9999 10.8284L7.0502 15.7782L5.63599 14.364L11.9999 8L18.3639 14.364L16.9497 15.7782L11.9999 10.8284Z'%3E%3C/path%3E%3C/svg%3E");
    transform: translateY(-50%) rotate(180deg);
}

.erviegas_docs_accordion_content {
    margin-top: 20px;
    color: #888;
}

.erviegas_docs_tab_content.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.erviegas_docs_accordion.active .erviegas_docs_accordion_title {
    color: #1489f6;
}
.erviegas_docs_accordion.active .erviegas_docs_accordion_title::before {
    transform: translateY(-50%) rotate(0deg);
}

.erviegas_docs_tab_content {
    display: none;
}

.erviegas_docs_link {
    text-decoration: none!important;
    display: block;
    color: #1489F6;
}

.erviegas-youtube-aspect {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.erviegas_search_ca {
    display: flex;
}
.erviegas_search_ca input {
    padding: 3px 10px!important;
    border: 1px solid rgba(0, 0, 0, .1) !important;
    background: #fff !important;
}
.erviegas_search_ca input:focus {
    border: 1px solid rgba(0, 0, 0, .1) !important;
    outline: none;
}
.erviegas_search_ca button {
    background: #000;
    color: #fff;
    padding: 3px 20px!important;
    border: none;
    cursor: pointer;
}
.erviegas_search_ca button:hover {
    background: #000;
    color: #fff;
}

.erviegas_docs_exemplo_fill_container {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    align-items: center;
}
.erviegas_docs_exemplo_fill_sample {
    font-style: italic;
}
.erviegas_docs_exemplo_fill {
    border: 2px solid yellow;
}

.erviegas_docs_table {
    border-collapse: collapse;
    border-width: 1px;
    overflow-x: auto;
    border: 1px solid #e7e7e7;
}
.erviegas_docs_table thead {
    font-weight: bold;
}
.erviegas_docs_table tr {
    border-style: inherit;
    border-width: inherit;
    border: 1px solid #e7e7e7;
}
.erviegas_docs_table td {
    border: 1px solid #e7e7e7;
}
.nice-select {
    display: none!important;
}

/* mqs */
@media (max-width: 768px) {
    .erviegas_docs_tabs {
        flex-direction: column;
    }

    .erviegas_search_ca input[type=text] {
        width: 100%
    }
}