/* ======================================================
   LOTOMANIA - ACCORDION / COLAPSO PREMIAÇÃO
====================================================== */

.pds_lotomania_accordion_btn {

    width: 100%;

    background: #fff7f0;

    border: 1px solid #ffe2cc;

    border-radius: 14px;

    padding: 14px 18px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    font-size: 1rem;

    font-weight: 800;

    color: #ff6600;

    transition: all 0.25s ease;
}

.pds_lotomania_accordion_btn:hover {

    background: #fff1e5;
}

.pds_lotomania_accordion_icon {

    transition: transform 0.25s ease;
}

.pds_lotomania_accordion_btn.active
.pds_lotomania_accordion_icon {

    transform: rotate(180deg);
}

.pds_lotomania_accordion_content {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.35s ease,
        padding 0.25s ease;

    padding: 0 4px;
}

.pds_lotomania_accordion_content.active {

    max-height: 1200px;

    padding-top: 18px;
}

.pds_lotomania_collapse_container {

    width: 100%;

    border: 1px solid #ffd7b8;

    border-radius: 14px;

    overflow: hidden;

    background: #fffaf6;

    margin-top: 18px;
}

/* CABEÇALHO */

.pds_lotomania_collapse_title {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 14px 16px;

    cursor: pointer;

    list-style: none;

    font-weight: 700;

    font-size: 0.95rem;

    color: #ff6600;

    background: #fffaf6;

    transition: background 0.2s ease;
}

/* REMOVE SETA PADRÃO */

.pds_lotomania_collapse_title::-webkit-details-marker {

    display: none;
}

.pds_lotomania_collapse_title::marker {

    display: none;
}

/* HOVER */

.pds_lotomania_collapse_title:hover {

    background: #fff1e5;
}

/* ÍCONE */

.pds_lotomania_collapse_icon {

    font-size: 0.9rem;

    transition: transform 0.25s ease;
}

/* GIRA SOMENTE O ÍCONE */

details[open] .pds_lotomania_collapse_icon {

    transform: rotate(180deg);
}

/* CONTEÚDO */

.pds_lotomania_collapse_content {

    padding: 14px 16px;

    border-top: 1px solid #ffe1ca;

    background: #ffffff;