/* Minification failed. Returning unminified contents.
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,28): run-time error CSS1039: Token not allowed after unary operator: '-c-background-secondary'
(20,17): run-time error CSS1039: Token not allowed after unary operator: '-c-text-primary'
(43,28): run-time error CSS1039: Token not allowed after unary operator: '-c-background-primary'
(122,21): run-time error CSS1039: Token not allowed after unary operator: '-c-text-action'
(163,28): run-time error CSS1039: Token not allowed after unary operator: '-c-border-primary'
(164,17): run-time error CSS1039: Token not allowed after unary operator: '-c-text-action'
(167,28): run-time error CSS1039: Token not allowed after unary operator: '-c-background-primary'
(197,17): run-time error CSS1039: Token not allowed after unary operator: '-c-text-action'
(206,32): run-time error CSS1039: Token not allowed after unary operator: '-c-background-tertiary'
(207,21): run-time error CSS1039: Token not allowed after unary operator: '-c-accent-primary'
(261,32): run-time error CSS1039: Token not allowed after unary operator: '-c-border-primary'
(262,21): run-time error CSS1039: Token not allowed after unary operator: '-c-text-action'
(270,25): run-time error CSS1039: Token not allowed after unary operator: '-c-text-action'
(274,25): run-time error CSS1039: Token not allowed after unary operator: '-c-text-action'
(278,25): run-time error CSS1039: Token not allowed after unary operator: '-c-text-action'
(282,32): run-time error CSS1039: Token not allowed after unary operator: '-c-accent-primary'
(296,21): run-time error CSS1039: Token not allowed after unary operator: '-c-text-action'
(333,21): run-time error CSS1039: Token not allowed after unary operator: '-c-accent-primary'
(334,35): run-time error CSS1039: Token not allowed after unary operator: '-c-accent-primary'
(357,17): run-time error CSS1039: Token not allowed after unary operator: '-c-text-secondary'
(408,21): run-time error CSS1039: Token not allowed after unary operator: '-c-text-action'
(413,36): run-time error CSS1039: Token not allowed after unary operator: '-c-background-tertiary'
(414,25): run-time error CSS1039: Token not allowed after unary operator: '-c-accent-primary'
(448,28): run-time error CSS1039: Token not allowed after unary operator: '-c-background-primary'
(491,28): run-time error CSS1039: Token not allowed after unary operator: '-c-background-quaternary'
(505,32): run-time error CSS1039: Token not allowed after unary operator: '-c-background-primary'
(523,32): run-time error CSS1039: Token not allowed after unary operator: '-c-accent-primary'
(531,36): run-time error CSS1039: Token not allowed after unary operator: '-c-background-tertiary'
(545,32): run-time error CSS1039: Token not allowed after unary operator: '-c-border-primary'
(549,21): run-time error CSS1039: Token not allowed after unary operator: '-c-text-action'
(560,28): run-time error CSS1039: Token not allowed after unary operator: '-c-text-primary'
(561,28): run-time error CSS1039: Token not allowed after unary operator: '-c-background-primary'
(851,28): run-time error CSS1039: Token not allowed after unary operator: '-c-background-quaternary'
(865,32): run-time error CSS1039: Token not allowed after unary operator: '-c-background-primary'
(892,36): run-time error CSS1039: Token not allowed after unary operator: '-c-background-tertiary'
 */
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --c-text-primary: #282a32;
    --c-text-secondary: #686b87;
    --c-text-action: #fff;
    --c-accent-primary: #434ce8;
    --c-border-primary: #eff1f6;
    --c-background-primary: #7f8287;
    --c-background-secondary: #fdfcff;
    --c-background-tertiary: #ecf3fe;
    --c-background-quaternary: #e9ecf4;
}

body {
    line-height: 1.5;
    min-height: 100vh;
    font-family: "Be Vietnam Pro", sans-serif;
    background-color: var(--c-background-secondary);
    color: var(--c-text-primary);
}

img {
    display: block;
    max-width: 100%;
}

:focus {
    outline: 0;
}

.responsive-wrapper {
    width: 88%;
    /*max-width: 1280px;*/
    margin-left: auto;
    margin-right: auto;
}

.header {
    display: flex;
    align-items: center;
    height: 80px;
    background-color: var(--c-background-primary);
    /*box-shadow: 0 4px 12px 0 rgba(136, 148, 171, 0.2), 0 24px 20px -24px rgba(71, 82, 107, 0.1);*/
    box-shadow: 0 30px 60px 0 rgba(90, 116, 148, 0.4);
}

.header-content {
    display: flex;
    align-items: center;
}

    .header-content > a {
        display: none;
    }

@media (max-width: 1200px) {
    .header-content {
        justify-content: space-between;
    }

        .header-content > a {
            display: inline-flex;
        }
}

.header-logo {
    margin-right: 2.5rem;
}

    .header-logo a {
        display: flex;
        align-items: center;
    }

        .header-logo a div {
            flex-shrink: 0;
            position: relative;
        }

            /*.header-logo a div:after {
                display: block;
                content: "";
                position: absolute;
                left: 0;
                top: auto;
                right: 0;
                bottom: 0;
                overflow: hidden;
                height: 50%;
                border-bottom-left-radius: 8px;
                border-bottom-right-radius: 8px;
                background-color: rgba(255, 255, 255, 0.2);
                -webkit-backdrop-filter: blur(4px);
                backdrop-filter: blur(4px);
            }*/

.header-navigation {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    .header-navigation {
        display: none;
    }

    .MobileMenu {
        display: block !important;
    }
}

.header-navigation-links {
    display: flex;
    align-items: center;
}

    .header-navigation-links a {
        text-decoration: none;
        color: var(--c-text-action);
        font-weight: 500;
        transition: 0.15s ease;
    }

        .header-navigation-links a + * {
            margin-left: 1.5rem;
        }

        .header-navigation-links a:hover, .header-navigation-links a:focus {
            color: #9acbff;
        }

.header-navigation-actions {
    display: flex;
    align-items: center;
}

    .header-navigation-actions > .avatar {
        margin-left: 0.75rem;
    }

    .header-navigation-actions > .icon-button + .icon-button {
        margin-left: 0.25rem;
    }

    .header-navigation-actions > .button + .icon-button {
        margin-left: 1rem;
    }

.button {
    font: inherit;
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1em;
    height: 40px;
    border-radius: 8px;
    line-height: 1;
    border: 2px solid var(--c-border-primary);
    color: var(--c-text-action);
    font-size: 0.875rem;
    transition: 0.15s ease;
    background-color: var(--c-background-primary);
}

    .button i {
        margin-right: 0.5rem;
        font-size: 1.25em;
    }

    .button span {
        font-weight: 500;
    }

    .button:hover, .button:focus {
        background-color: #3d77f6;
        /*border-color: var(--c-accent-primary);*/
        border-color: white !important;
        color: white;
        /*color: var(--c-accent-primary);*/
    }

.icon-button {
    font: inherit;
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--c-text-action);
    transition: 0.15s ease;
}

    .icon-button i {
        font-size: 1.25em;
    }

    .icon-button:focus, .icon-button:hover {
        background-color: var(--c-background-tertiary);
        color: var(--c-accent-primary);
    }

.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
}

.main {
    padding-top: 2rem;
}

.main-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

    .main-header h1 {
        font-size: 1.75rem;
        font-weight: 600;
        line-height: 1.25;
    }

@media (max-width: 550px) {
    .main-header h1 {
        margin-bottom: 1rem;
    }
}

.search {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 340px;
}

    .search input {
        font: inherit;
        color: inherit;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 1em 0 36px;
        height: 40px;
        border-radius: 8px;
        border: 2px solid var(--c-border-primary);
        color: var(--c-text-action);
        font-size: 0.875rem;
        transition: 0.15s ease;
        width: 100%;
        line-height: 1;
    }

        .search input::-moz-placeholder {
            color: var(--c-text-action);
        }

        .search input:-ms-input-placeholder {
            color: var(--c-text-action);
        }

        .search input::placeholder {
            color: var(--c-text-action);
        }

        .search input:focus, .search input:hover {
            border-color: var(--c-accent-primary);
        }

    .search button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background-color: transparent;
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.25em;
        color: var(--c-text-action);
        padding: 0;
        height: 40px;
    }

.horizontal-tabs {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    overflow-x: auto;
}

@media (max-width: 1000px) {
    .horizontal-tabs {
        scrollbar-width: none;
        position: relative;
    }

        .horizontal-tabs::-webkit-scrollbar {
            display: none;
        }
}

.horizontal-tabs a {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    height: 48px;
    padding: 0 0.25rem;
    font-weight: 500;
    color: inherit;
    border-bottom: 3px solid transparent;
    text-decoration: none;
    transition: 0.15s ease;
}

    .horizontal-tabs a:hover, .horizontal-tabs a:focus, .horizontal-tabs a.active {
        color: var(--c-accent-primary);
        border-bottom-color: var(--c-accent-primary);
    }

    .horizontal-tabs a + * {
        margin-left: 1rem;
    }

.content-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    /*padding-top: 3rem;*/
    margin-top: -1px;
    /*border-top: 1px solid var(--c-border-primary);*/
}

.content-header-intro h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.content-header-intro p {
    color: var(--c-text-secondary);
    margin-top: 0.25rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

@media (min-width: 800px) {
    .content-header-actions a:first-child {
        display: none;
    }

}

.MobileMenu{
    display:none;
}

.content {
    /*border-top: 1px solid var(--c-border-primary);*/
    /*margin-top: 2rem;*/
    display: flex;
    align-items: flex-start;
}

.content-panel {
    display: none;
    max-width: 280px;
    width: 25%;
    padding: 2rem 1rem 2rem 0;
    margin-right: 3rem;
}

@media (min-width: 800px) {
    .content-panel {
        display: block;
    }
}

.vertical-tabs {
    display: flex;
    flex-direction: column;
}

    .vertical-tabs a {
        display: flex;
        align-items: center;
        padding: 0.75em 1em;
        background-color: transparent;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        color: var(--c-text-action);
        transition: 0.15s ease;
    }

        .vertical-tabs a:hover, .vertical-tabs a:focus, .vertical-tabs a.active {
            background-color: var(--c-background-tertiary);
            color: var(--c-accent-primary);
        }

        .vertical-tabs a + * {
            margin-top: 0.25rem;
        }

.content-main {
    padding-top: 2rem;
    padding-bottom: 6rem;
    flex-grow: 1;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    row-gap: 1.5rem;
}

@media (min-width: 600px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background-color: var(--c-background-primary);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.05), 0 5px 15px 0 rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem 1.25rem 1rem 1.25rem;
}

    .card-header div {
        display: flex;
        align-items: center;
    }

        .card-header div span {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

            .card-header div span img {
                max-height: 100%;
            }

        .card-header div h3 {
            margin-left: 0.75rem;
            font-weight: 500;
        }

.toggle span {
    display: block;
    width: 40px;
    height: 24px;
    border-radius: 99em;
    background-color: var(--c-background-quaternary);
    box-shadow: inset 1px 1px 1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    transition: 0.15s ease;
}

    .toggle span:before {
        content: "";
        display: block;
        position: absolute;
        left: 3px;
        top: 3px;
        height: 18px;
        width: 18px;
        background-color: var(--c-background-primary);
        border-radius: 50%;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
        transition: 0.15s ease;
    }

.toggle input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

    .toggle input:checked + span {
        background-color: var(--c-accent-primary);
    }

        .toggle input:checked + span:before {
            transform: translateX(calc(100% - 2px));
        }

    .toggle input:focus + span {
        box-shadow: 0 0 0 4px var(--c-background-tertiary);
    }

.card-body {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
}

.card-footer {
    margin-top: auto;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid var(--c-border-primary);
}

    .card-footer a {
        color: var(--c-text-action);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.875rem;
    }

html::-webkit-scrollbar {
    width: 12px;
}

html::-webkit-scrollbar-thumb {
    background-color: var(--c-text-primary);
    border: 4px solid var(--c-background-primary);
    border-radius: 99em;
}

.SegundaPagina {
    display: none;
}

@page {
    size: auto;
    margin: 8.5mm;
}

@media screen {
    #printSection {
        display: none;
    }
}

@media print {
    body * {
        visibility: hidden;
    }

    #printSection, #printSection * {
        visibility: visible;
    }

    #printSection {
        position: absolute;
        left: 0;
        top: 0;
    }

    .SegundaPagina {
        display: block;
    }
}


/*MobileMenu*/

.nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 55px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    background-color: #dadada;
    display: flex;
    overflow-x: auto;
    border-radius: 20px 20px 0 0;
}

.nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 50px;
    overflow: hidden;
    white-space: nowrap;
    font-family: sans-serif;
    font-size: 23px;
    color: #4c4c4c;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
}

.nav__link span{
    font-size:10px!important;
}

    .nav__link:hover {
        background-color: #eeeeee;
    }

.nav__link--active {

    color: #0d6efd;
    border-bottom-style: solid;
    border-bottom-color: #0d6efd;
}

.nav__icon {
    font-size: 18px;
}

/*MobileMenu*/


/*input[type=radio] {
    position: absolute;
    visibility: hidden;
    display: none;
}

label {

    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    padding: 5px 20px;
}

input[type=radio]:checked + label {
    color: white;
    background: #167bcb;
    border-radius: 20px;
}

label + input[type=radio] + label {
    border-left: solid 3px #675f6b;
}

.radio-group {
    border: solid 3px #675f6b;
    display: inline-block;
    margin: 20px;
    border-radius: 10px;
    overflow: hidden;
}*/

.fieldsetc {
    margin-top: 10px;
    width: 100%;
    border-radius: 20px;
    display: inline-block;
    border: none;
    background-color: #ededed;
    padding-bottom:10px;
    padding-left:10px;
}

.legendc {
    font-size: 20px;
    font-weight: bold;
    background: #84a6c5;
    border-radius: 12px;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;
    color: white;
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #c7c7c7;
    border-radius: 50%;
    margin-right: 10px;
    background-color: transparent;
    position: relative;
    top: 6px;
}

    input[type="radio"]:checked::before {
        content: "";
        display: block;
        width: 12px;
        height: 12px;
        background-color: #0d6efd;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: appear 0.8s;
    }

.labelc {
	font-size: 18px;
	font-weight: bold;
	color: black;
}

.divc {
	display: flex;
	align-items: center;
	/*margin-bottom: 20px;*/
}

@keyframes appear {
	0% {
		transform: translate(-50%, -50%) scale(0);
		background-color: #fff;
	}
    45% {
        transform: translate(-50%, -50%) scale(1.6);
        background-color: #86b6fe;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.7);
        background-color: #569afe;
    }
	55% {
		transform: translate(-50%, -50%) scale(1.6);
	}
    100% {
        transform: translate(-50%, -50%) scale(1);
        background-color: #3d8bfd;
    }
}


#section2 {
    background-color: #F59E0B;
    padding: 5%;
    transform: skew(0, -2deg); /* makes the section slanted/skewed */
}

    #section2 h3, #section2 p {
        transform: skew(0, 2deg); /* eliminates skew on container's text elements */
    }



hr.style18 {
    height: 30px;
    border-style: solid;
    border-color: #8c8b8b;
    border-width: 10px 0 0 0;
    border-radius: 20px;
}

    hr.style18:before {
        display: block;
        content: "";
        height: 30px;
        margin-top: -31px;
        border-style: solid;
        border-color: #8c8b8b;
        border-width: 0 0 1px 0;
        border-radius: 20px;
    }



/* Shine */
.shine {
    height: 20px;
    width: 100%;
    background-image: radial-gradient(farthest-side at 50% -50%, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    position: relative;
}

    .shine::before {
        height: 1px;
        position: absolute;
        top: -1px;
        left: 0;
        right: 0;
        background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0));
    }


.inputnum {
    background-color: #e0eeff !important;
    font-weight: bold !important;
    border-bottom: solid !important;
    border-bottom-width: thick;
    border-bottom-color: #3085d6 !important;
    border-radius: unset !important;
    border-right:none!important;
    border-top:none!important;
    border-left:none!important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


.toggle span {
    display: block;
    width: 40px;
    height: 24px;
    border-radius: 99em;
    background-color: var(--c-background-quaternary);
    box-shadow: inset 1px 1px 1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    transition: 0.15s ease;
}

    .toggle span:before {
        content: "";
        display: block;
        position: absolute;
        left: 3px;
        top: 3px;
        height: 18px;
        width: 18px;
        background-color: var(--c-background-primary);
        border-radius: 50%;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
        transition: 0.15s ease;
    }

.toggle input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

    .toggle input:checked + span {
        background-color: #61c729;
    }


        .toggle input:checked + span:before {
            transform: translateX(calc(100% - 2px));
        }

    .toggle input:focus + span {
        box-shadow: 0 0 0 4px var(--c-background-tertiary);
    }



.ExtH{
    padding-right:10px;
    padding-left:10px;
    text-align:center!important;
}
.ExtHs{
    text-align:center!important;
    font-size:15px;
}

    .ExtHs span {
        font-weight: bold;
        color: #9396cf;
    }
.DivH {
    width: 100%;
    background-color: #f1f1fe;
    border-radius: 20px;
}
.tableH {
    margin: 0 auto; /* or margin: 0 auto 0 auto */
}
.TitleH {
    z-index: 1;
    justify-content: center;
    padding: 0;
    overflow: auto;
    color: inherit;
    font-size: 1.125em;
    font-weight: normal;
    line-height: normal;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
    margin-bottom: 20px;
}

.TitleH span{
    font-weight:bold;
}



