*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}
body{
    margin: 0;
    padding: 0;
}
:root {
    --largura: 600px;
    --fontfamily: 'Georgia';
    --fontSelectSize: 15px;
    --referenciaFontsize: 14px;
    --areferenciaFontsize: 14px;
    --fonteAccordion: 18px;
}

.container {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto;
    background-color: rgb(194 240 249);
    width: var(--largura);
    margin-left: auto;
    margin-right: auto;
}

.titulo {
    padding: 15px 0px 5px 0px;
    font-size: 25px;
    text-align: center;
}

.rotas {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: end;
    margin-bottom: 3px;
    margin-right: 3px;
}

.lang a {
    padding: 3px 12px 3px 12px;
    text-decoration: none;
    background-color: black;
    color: white;
    font-size: 11px;
    border-radius: 5px;
    margin-right: 3px;
}

.item {
    background-color: #9eecef;
    border-bottom: 3px solid rgb(194 240 249);
    overflow: hidden;
}

.item:last-child {
    border-bottom: none;
}

.item-2 {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    justify-items: center;
    align-items: center;
    row-gap: 5px;
}

#dose {
    width: 70px;
    text-align: center;
    font-family: var(--fontfamily);
    font-size: 16px !important;
    /* padding: 1px 0px 4px 0px; */
    border-radius: 5px;
    border: 1px solid black;
}

.margTop {
    margin-top: 6px;
}

.margBott {
    margin-bottom: 6px;
}
.item-3{
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
}
.Equi{
    margin-top: 8px;
    text-align: center;
    font-weight: bold;
}
.botaoSelect {
    font-family: var(--fontfamily) !important;
    font-size: 12px !important;
    text-align: center;
    padding: 2px 0px 2px 0px !important;
    font-weight: normal !important;
}

.botaoSelectText {
    font-family: var(--fontfamily) !important;
    font-size: 14px !important;
    text-align: center !important;
    margin-right: 2px !important;
}

.botaoMenu {
    font-family: var(--fontfamily) !important;
    font-size: 12px !important;
    text-align: center;
}

.fontMenu {
    font-family: var(--fontfamily);
    background-color: rgb(41, 71, 136);
    color: white;
}

.osteroides {
    padding: 10px 5px;
}

.accordion {
    position: relative;
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 3px 0px 3px 6px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: var(--fonteAccordion);
    transition: 0.5s;
    margin-bottom: 2px;
    text-align: center;
}

.accordion:hover {
    background-color: rgb(29, 149, 185);
    color: white;
    /* background-color: #ccc; */
}

.accordion:hover .arrow-down {
    border-top: 6px solid white;
}

.active {
    background-color: rgb(29, 149, 185);
    color: white;
}

.adose {
    display: inline;
    font-size: 14px;
    font-weight: bold;
    margin-left: 8px;
}

.panel {
    position: relative;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-items: center;
    background-color: white;
    height: 0;
    overflow: hidden;
    transition: height 0.2s ease-out;
    padding: 0px 5px;
}

.arrow-up {
    position: absolute;
    top: 8px;
    right: 5px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;

    border-bottom: 6px solid white;
    /* border-bottom: 6px solid black; */
}

.arrow-down {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;

    border-top: 6px solid black;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
    margin: 10px 0px;
}

td {
    padding: 2px;
}

tr:nth-child(even) {
    background-color: #d4f1cf;
}

.noCentro {
    text-align: center;
}

.naEsquerda {
    text-align: left;
}

.naDireita {
    text-align: right;
}

.largCell {
    width: 30%;
}

.padLeft {
    padding-left: 10px;
}

.item-4 {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
}

.item_R {
    padding-left: 10px;
    text-align: left;
}

.referencia,
.areferencia {
    padding: 2px 5px 4px 20px;
    text-indent: -15px;
    font-size: var(--referenciaFontsize);
    font-weight: bold;
}

.referencia {
    font-style: italic;
    text-decoration: underline;
}

.areferencia {
    font-size: var(--areferenciaFontsize);
    font-weight: normal;
}

@media screen and (max-width: 480px) {
    :root {
        --largura: 390px;
        --fontFamily: 'Geogia';
        --areferenciaFontsize: 11px;
        --referenciaFontsize: 13px;
        --fonteAccordion: 15px
    }

    .largCell {
        width: 37%;
    }

    td {
        font-size: 12px;
    }
}

@media screen and (max-width: 393px) {
    :root {
        --largura: 370px;
    }

    .largCell {
        width: 38%;
    }
}

@media screen and (max-width: 375px) {
    :root {
        --largura: 360px;
    }

    .largCell {
        width: 40%;
    }

}

@media screen and (max-width: 360px) {
    :root {
        --largura: 350px;
    }
}

@media screen and (max-width: 320px) {
    :root {
        --largura: 310px;
    }

    .largCell {
        width: 50%;
    }
}