/* Minification failed. Returning unminified contents.
(12,28): run-time error CSS1039: Token not allowed after unary operator: '-color-red-txt--primary'
(88,32): run-time error CSS1039: Token not allowed after unary operator: '-color-yellow-txt--primary'
(97,39): run-time error CSS1039: Token not allowed after unary operator: '-color-yellow-txt--primary'
 */
/* Minification failed. Returning unminified contents.
(7,28): run-time error CSS1039: Token not allowed after unary operator: '-color-red-txt--primary'
(83,32): run-time error CSS1039: Token not allowed after unary operator: '-color-yellow-txt--primary'
(92,39): run-time error CSS1039: Token not allowed after unary operator: '-color-yellow-txt--primary'
 */
/* Minification failed. Returning unminified contents.
(2,28): run-time error CSS1039: Token not allowed after unary operator: '-color-red-txt--primary'
(77,32): run-time error CSS1039: Token not allowed after unary operator: '-color-yellow-txt--primary'
(86,39): run-time error CSS1039: Token not allowed after unary operator: '-color-yellow-txt--primary'
 */
body {
    background-color: var(--color-red-txt--primary);
}

.main-container {
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

.home-section-2-title {
    margin-bottom: 60px;
    width: 100%;
    max-width: 800px;
}

    .home-section-2-title h2 {
        font-size: 40px;
        text-align: center;
        color: white;
        font-weight: bold;
        font-style: italic;
    }

    .home-section-2-title .home-section-2-title--span-1 {
        margin-left: -50px;
    }

    .home-section-2-title .home-section-2-title--span-2 {
    }

.container-dudas {
    padding-top: 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* max-width: 1300px; */
    align-items: center;
    gap: 50px;
}

.dudas-titulo {
    text-align: center;
    font-size: calc(1rem + 1vw);
    color: #FFF;
    text-align: center;
    /* text-shadow: 0px 4px 8px #083679, 0px -2px 6px #082578; */
    -webkit-text-stroke-width: 3;
    -webkit-text-stroke-color: #1377F0;
    font-family: 'Pinup-Regular';
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}

.accordion {
    width: 90%;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
}

.accordion-item {
    /* margin-top: 10px; */
    color: #fff;
    /* cursor: pointer; */
    padding: 1rem 0px;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
    font-weight: normal;
    border-top: 2px solid var(--color-yellow-txt--primary);
}

    .accordion-item:first-child {
        margin-top: 0px;
    }

    .accordion-item:last-child {
        margin-bottom: 70px;
        border-bottom: 2px solid var(--color-yellow-txt--primary);
    }

.accordion-header {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    cursor: pointer;
    padding: 1rem;
    text-align: left;
    outline: none;
    background-color: transparent;
    border: none;
    transition: background-color 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Pinup-Regular';
}

.accordion-arrow {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: auto;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
    color: white;
    text-align: justify;
}

.accordion-item .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    margin: 1rem 0;
}

.accordion-content::-webkit-scrollbar {
    width: 12px;
}

.accordion-content::-webkit-scrollbar-track {
    background-color: #0E1E44;
}

.accordion-content::-webkit-scrollbar-thumb {
    background-color: #6CCFFF;
    border-radius: 10px;
}

    .accordion-content::-webkit-scrollbar-thumb:hover {
        background-color: #5BB3E1;
    }

.accordion-content ul {
    padding-left: 20px;
}

    .accordion-content ul li {
        list-style-type: disc;
    }

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-content a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: 15px;
}

    .table-responsive::-webkit-scrollbar {
        width: 1px;
        height: 8px
    }

    .table-responsive::-webkit-scrollbar-track {
        background-color: #ffffff2e;
    }

    .table-responsive::-webkit-scrollbar-thumb {
        background-color: #fbfbfb8f;
        border-radius: 10px;
    }

        .table-responsive::-webkit-scrollbar-thumb:hover {
            background-color: #fbfbfb;
        }

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

    table th, table td {
        border: 1px solid #ddd;
        padding: 8px;
        /* white-space: nowrap; */
        white-space: break-spaces;
        color: white;
    }

    table th {
        background-color: #f2f2f2;
        text-align: left;
        color: #010552;
        font-size: 20px;
    }

.p-lef-20 {
    padding-left: 40px !important;
}

.list-style-none {
    list-style: none !important;
}

strong {
    font-weight: bold;
}

@media(max-width: 468px) {
    .accordion {
        width: 95%;
    }
}

@media screen and (max-width: 600px) {
    table th, table td {
        font-size: 12px;
    }
}

@media(min-width: 1200px) {
    body {
        /*background-image: url(/Content/assets/faqs/bg_dt_FAQs.webp);*/
        background-position: left;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .container-dudas {
        /* align-items: end; */
    }

    .home-section-2-title {
    }

        .home-section-2-title h2 {
            text-align: left;
        }

        .home-section-2-title .home-section-2-title--span-1 {
            margin-left: 50px;
        }

        .home-section-2-title .home-section-2-title--span-2 {
            margin-left: 100px;
        }
}

