
    :root {
        --primary: #227093;
        --secondary: #ff5252;
        --background: #eee;
        --highlight: #ffda79;
        /* Theme color */
        --theme: var(--primary);
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    .tab {
        position: relative;
    }

    th {
        padding: 13px;
        color: black;
        font-weight: 400;
    }

    td {
        padding: 10px;
        color: black;
    }

    @media (max-width: 1200px) {
        .panel-body {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            /* smooth scroll on mobile */
        }

        .panel-body table {
            min-width: 700px;
            /* force scroll */
        }

        .panel-body th,
        .panel-body td {
            white-space: nowrap;
            /* keep cells in one line */
        }
    }

    @media only screen and (min-width: 320px) and (max-width: 1024px) {

        div#headingtest1,
        div#headingtest2 {
            padding: 12px !important;
            background: #227093 !important;
        }

        svg#Capa_1 {
            position: absolute !important;
            right: 9% !important;
        }

    }

    .tab input {
        position: absolute;
        opacity: 0;
        z-index: -1;
    }

    .tab__content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.35s;
    }

    .tab input:checked~.tab__content {
        max-height: 100%;
        padding: 15px;
    }

    .panel-title a {
        color: white;
        font-size: 18px;
    }

    .accordion {
        color: var(--theme);
        border: 2px solid;
        overflow: hidden;
    }

    .tab__label,
    .tab__close {
        display: flex;
        color: white;
        background: var(--theme);
        cursor: pointer;
    }

    .tab__label {
        justify-content: space-between;
        padding: 1rem;
    }

    .tab__label::after {
        content: "\276F";
        width: 1em;
        height: 1em;
        text-align: center;
        transform: rotate(90deg);
        transition: all 0.35s;
    }

    label.tab__label {
        color: #ffffff;
        font-size: 2.4rem;
        text-transform: uppercase;
        font-family: "Oswald", sans-serif;
        font-weight: 500;
        line-height: 1.2;
    }

    div#headingtest1 {
        padding: 18px;
        background: #227093;
    }

    .tab input:checked+.tab__label::after {
        transform: rotate(270deg);
    }

    .tab__content p {
        margin: 0;
        padding: 1rem;
    }

    .tab__close {
        justify-content: flex-end;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .accordion--radio {
        --theme: var(--secondary);
    }

    .tab input:not(:checked)+.tab__label:hover::after {
        animation: bounce .5s infinite;
    }

    @keyframes bounce {
        25% {
            transform: rotate(90deg) translate(.25rem);
        }

        75% {
            transform: rotate(90deg) translate(-.25rem);
        }
    }

    div#headingtest2 {
        padding: 18px;
        background: #227093 !important;
        color: #ffffff;
        /* text color */
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
        font-family: "Oswald", sans-serif;
        line-height: 1.4;

    }

    div#headingtest3 {
        padding: 18px;
        background: #227093 !important;
        color: #ffffff;
        /* text color */
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
        font-family: "Oswald", sans-serif;
        line-height: 1.4;

    }

    div#headingtest4 {
        padding: 18px;
        background: #227093 !important;
        color: #ffffff;
        /* text color */
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
        font-family: "Oswald", sans-serif;
        line-height: 1.4;

    }

    div#headingtest5 {
        padding: 18px;
        background: #227093 !important;
        color: #ffffff;
        /* text color */
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
        font-family: "Oswald", sans-serif;
        line-height: 1.4;

    }

