body {
    background: #F5F5F5;
    color: #000000;
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
    overflow-x: hidden !important;
}
body.element_bg {
    background: #7F8FA6;
    color: #FFFFFF;
}
h1 {
    font-size: 30px;
    margin: 0;
}
h2 {
    font-size: 22px;
    font-weight: normal;
    margin: 0;
}
h3 {
    font-size: 20px;
    font-weight: normal;
    margin: 0;
}
h4 {
    font-size: 16px;
    font-weight: normal;
    margin: 0;
}
h5 {
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}
h6 {
    font-size: 10px;
    font-weight: normal;
    margin: 0;
}

p {
    font-size: 16px;
    margin: 0;
}

q {
    font-size: 14px;
    margin: 0;
}

cite {
    color: #D7D7D7;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
    box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.25);
}

.slider:before {
    position: absolute;
    content: "";
    height: 34px;
    width: 34px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
    box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.25);
}

input:checked + .slider {
    background-color: #2ECC71;
    box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.25);
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
    box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.25);
}

input:checked + .slider:before {
    -webkit-transform: translateX(46px);
    -ms-transform: translateX(46px);
    transform: translateX(46px);
}

input[type=text], input[type=password], select {
    height: 30px;
    width: 80%;
    border: none;
    border-radius: 5px;
    box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.25);
}

input[type=text].info {
    border: 3px solid #3498DB;
}

input[type=text].success {
    border: 3px solid #2ECC71;
}

input[type=text].danger {
    border: 3px solid #E74C3C;
}

input[type=text].warning {
    border: 3px solid #E67E22;
}

.data_container {
    height: auto;
    display: grid;
    grid-template-columns: 95% auto;
    justify-content: center;
    align-items: center;
    padding: 5px 0 5px 0;
}

.data_container-simple {
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 8px 0 5px 5px;
}

.data_container.info, .data_container-simple.info {
    background: #3498DB;
}

.data_container.success, .data_container-simple.success {
    background: #2ECC71;
}

.data_container.danger, .data_container-simple.danger {
    background: #E74C3C;
}

.data_container.warning, .data_container-simple.warning {
    background: #E67E22;
}

.data_container.general, .data_container-simple.general {
    background: #8E44AD;
}

.close_button {
    cursor: pointer;
}

.search_container {
    display: grid;
    grid-template-columns: 95% auto;
}

.search_button_space {
    position: relative;
    width: 100%;
}

.search_button {
    border-radius: 0 5px 5px 0;
    background: #FFF;
    color: #000;
    text-align: center;
    align-items: center;
    position: absolute;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 30px;
    border: none;
    box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.25);
}

.search_button:hover {
    background: #DDD;
}

input[type=text].form-search {
    border-radius: 5px 0 0 5px;
    padding: 0;
    width: 100%;
}

.container_card {
    background: #FFFFFF;
    border-radius: 5px;
    color: #000;
    padding: 10px;
}

.btn {
    font-family: 'Orienta';
    border: none;
    font-size: 18px;
    padding: 10px 26px;
    text-decoration: none;
}

.btn-border {
    box-sizing: border-box !important;
    font-family: 'Orienta';
    font-size: 18px;
    background: none !important;
    border-color: #3498DB;
    color: #FFFFFF !important;
    border: 3px solid;
    padding: 10px 26px;
    text-decoration: none;
}

a {
    font-family: 'Orienta';
    color: #E74C3C;
}

a.noSubLine {
    font-family: 'Orienta';
    text-decoration: none;
}

a:link {
    color: #E74C3C;
}

a:visited {
    color: #E74C3C;
}

.btn-primary{
    background: #3498DB;
    border-color: #3498DB;
    color: #FFFFFF;
}
a.btn-primary:link{
    color: #FFFFFF;
}
a.btn-primary:visited{
    color: #FFFFFF;
}

.btn-secondary{
    background: #ECF0F1;
    border-color: #ECF0F1;
    color: #5C5C5C;
}
a.btn-secondary:link{
    color: #5C5C5C;
}
a.btn-secondary:visited{
    color: #5C5C5C;
}

.btn-success{
    background: #2ECC71;
    border-color: #2ECC71;
    color: #FFFFFF;
}
a.btn-success:link{
    color: #FFFFFF;
}
a.btn-success:visited{
    color: #FFFFFF;
}

.btn-info{
    background: #1ABC9C;
    border-color: #1ABC9C;
    color: #FFFFFF;
}
a.btn-info:link{
    color: #FFFFFF;
}
a.btn-info:visited{
    color: #FFFFFF;
}

.btn-warning{
    background: #E67E22;
    border-color: #E67E22;
    color: #FFFFFF;
}
a.btn-warning:link{
    color: #FFFFFF;
}
a.btn-warning:visited{
    color: #FFFFFF;
}

.btn-danger{
    background: #E74C3C;
    border-color: #E74C3C;
    color: #FFFFFF;
}
a.btn-danger:link{
    color: #FFFFFF;
}
a.btn-danger:visited{
    color: #FFFFFF;
}

.btn-general{
    background: #8E44AD;
    border-color: #8E44AD;
    color: #FFFFFF;
}
a.btn-general:link{
    color: #FFFFFF;
}
a.btn-general:visited{
    color: #FFFFFF;
}

.btn-link{
    background: #A6A6A6;
    border-color: #A6A6A6;
    color: #FFFFFF;
}

.btn-primary:hover{
    cursor: pointer;
    background: #217bb8;
    border-color: #217bb8;
}

.btn-secondary:hover{
    cursor: pointer;
    background: #b5c5c9;
    border-color: #b5c5c9;
}

.btn-success:hover{
    cursor: pointer;
    background: #25a35a;
    border-color: #25a35a;
}

.btn-info:hover{
    cursor: pointer;
    background: #15967d;
    border-color: #15967d;
}

.btn-warning:hover{
    cursor: pointer;
    background: #be6415;
    border-color: #be6415;
}

.btn-danger:hover{
    cursor: pointer;
    background: #cf2b1a;
    border-color: #cf2b1a;
}

.btn-general:hover{
    cursor: pointer;
    background: #703688;
    border-color: #703688;
}

.btn-link:hover{
    cursor: pointer;
    background: #858585;
    border-color: #858585;
}

.presentation_card {
    max-width: 240px;
    color: #FFF;
    margin-left: 15px;
}

.presentation_container {
    max-height: 280px;
    color: #FFF;
}

.presentation_image {
    width: 240px;
    height: 280px;
    object-fit: contain;
    border-radius: 10px 10px 0 0;
    margin: 0;
    padding: 0;
}

.presentation_description {
    background: #8E44AD;
    text-align: center;
    margin: 0;
    padding: 0;
}

.presentation_information {
    font-size: 14px;
}

.calendar_card {
    width: 80%;
    margin-left: 10%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.calendar_littleday {
    display: none;
}

@media screen and (max-width: 1200px) {
    .calendar_card {
        width: 100%;
        margin-left: 0;
    }
    .calendar_bigday {
        display: none;
    }
    .calendar_littleday {
        display: block;
    }
}

.calendar_month {
    background: #8E44AD;
    display: grid;
    grid-template-columns: 45px auto 45px;
    text-align: center;
    height: 45px;
    color: white;
}
.calendar_info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.calendar_arrow {
    font-size: 36px;
    color: #FFF;
    background: #72328C;
}

.calendar_days {
    display: grid;
    grid-template-columns: calc(100% / 7) calc(100% / 7) calc(100% / 7) calc(100% / 7) calc(100% / 7) calc(100% / 7) calc(100% / 7);
    color: #000000;
    text-align: center;
}

.calendar_day {
    background: #D2D2D2;
    padding: 8px 0 8px 0;
}

.calendar_day:nth-child(even) {
    background: #E8E8E8;
}

.calendar_list {
    display: grid;
    grid-template-columns: calc(100% / 7) calc(100% / 7) calc(100% / 7) calc(100% / 7) calc(100% / 7) calc(100% / 7) calc(100% / 7);
    color: #000000;
}

.calendar_number {
    padding-bottom: 35%;
    background: #E8E8E8;
    position: relative;
    cursor: pointer;
}
.calendar_number:hover {
    cursor: pointer;
}

.calendar_number_text {
    margin: 8px;
}

.calendar_number:nth-child(even) {
    background: #D2D2D2;
}
.calendar_number_other {
    color: #999;
}

.container_event {
    color: #FFFFFF;
    background: #E3B100;
    position: absolute;
    right: 3px;
    bottom: 3px;
    padding: 3px 7px 3px 7px;
    border-radius: 5px;
}

.card {
    background: #FFF;
    width: 90%;
    margin-left: 5%;
    border-radius: 10px;
    overflow: hidden;
}

.card-title-left, .card-title-center, .card-title-right {
    background: #8E44AD;
    color: #FFF;
}

.card-title-center {
    text-align: center;
}

.card-title-right {
    text-align: right;
}

.card-title {
    padding: 15px;
}
.card-content-for-text {
    font-size: 20px;
    color: #000;
    padding: 15px;
}
.informations-container {
    width: 100%;
}
.informations-presentation {
    display: flex;
    justify-content: center;
    align-items: center;
}
.informations-data {
    font-size: 30px;
}
.informations-image {
    max-width: 100%;
    overflow: hidden;
    object-fit: contain;
    object-position: 50% 0;
}
.informations-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.informations-anchor-link {
    min-width: calc(100% / 3);
    max-width: 100%;
    width: 1fr;
    text-align: center;
    background: #DEDEDE;
}
.informations-anchor-link:nth-child(even) {
    background: #CACACA;
}
.informations-anchor-link:link {
    color: black;
    text-decoration: none;
}
.informations-anchor-link:visited {
    color: black;
    text-decoration: none;
}
table {
    width: 100%;
    border-spacing: 0px;
    color: #000;
}
tr.thead-element {
    background: #B8B8B8;
    font-weight: 600;
    text-align: center;
}
tr.tbody-element {
    background: #E8E8E8;
}
tr.tbody-element:nth-child(even) {
    background: #D2D2D2;
}
td {
    padding: 10px;
    border: 1px solid #B8B8B8;
}
.data-container {
    width: calc(100% - 20px);
    background: #E74C3C;
    padding: 10px;
    color: white;
}
.slide-container {
    position: relative;
    z-index: 0;
    background: #000;
    color: #FFF;
    width: 100%;
    height: 500px;
}
.slide-arrows {
    position: absolute;
    top: 50%;
    bottom: 50%;
    font-size: 32px;
    width: 100%;
    display: flex;
}
.element-select-previous, .element-select-next {
    background: #00000055;
    position: absolute;
    padding: 10px;
    cursor: pointer;
}
.element-select-next {
    right: 0;
    cursor: pointer;
}
.slide-hidden {
    display: none;
}
.slide-img {
    height: auto;
    height: 500px;
    width: 100%;
    object-fit: contain;
    object-position: 50% 0;
}
.element_commentary {
    position: absolute;
    bottom: 0;
    width: calc(100% - 30px);
    height: 150px;
    /*display: flex;
    align-items: flex-end;*/
    z-index: 0;
    padding: 15px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 49.79%, rgba(0, 0, 0, 0.6) 100%);
    color: #FFFFFF;
}

.no-scroll {
    overflow: hidden;
}
.navigation {
    position: fixed;
    top: 0;
    z-index: 1;
    height: 60px;
    width: 100vw;
    background: #8E44AD;
    display: grid;
    grid-template-columns: 60px auto 60px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
}
.nav_icon {
    background: #FFFFFF;
    width: 60px;
    height: 60px;
}
.nav_img {
    width: 55px;
    height: 55px;
    padding-top: 2.5px;
    padding-left: 2.5px;
}
.nav_title {
    font-size: 19px;
    height: 60px;
    color: #FFFFFF;
    padding-left: 5px;
    display: flex;
    align-items: center;
}
.nav_system_button {
    width: 60px;
    height: 60px;
    background: #72328C;
}
.nav_system_button:hover {
    background: #5C2C71;
    cursor: pointer;
}
.nav_login {
    font-family: 'Orienta';
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 24px;
    color: #FFFFFF;
    display: none;
}
.nav_burger {
    font-size: 40px;
    padding-top: 7.5px;
    text-align: center;
    color: #FFFFFF;
}

@media screen and (min-width: 1200px) {
    .navigation {
        position: sticky;
        margin: 10px 10px 0 10px;
        width: calc(100% - 20px);
        top: 10px;
        z-index: 6;
        overflow: hidden;
        grid-template-columns: 60px auto 150px;
    }
    .nav_system_button {
        width: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav_login {
        display: block;
    }
    .nav_burger {
        display: none;
    }
}


/*----------------*/


.nav_elements {
    width: 100%;
    height: 100vh;
    top: 0;
    z-index: 6;
    position: fixed;
    overflow-x: hidden;
    overflow-y: scroll;
}
.nav_trigger {
    width: 100%;
    height: 100vh;
    position: absolute;
    background: #00000033;
}
.nav_container {
    background: #8E44AD;
    width: 80vw;
    height: 100vh;
    position: absolute;
    left: 20%;
}
.nav_menu_title {
    font-size: 19px;
    color: #FFFFFF;
    padding-left: 5px;
    display: flex;
    align-items: center;
}
.nav_text {
    width: calc(100% - 50px);
}
.nav_close {
    font-size: 40px;
    background: #72328C;
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
}
.nav_button, .nav_button:visited, .nav_button:link {
    background: #5C2C71;
    color: #FFF;
    /*width: 100%;*/
    text-decoration: none;
    display: block;
    padding: 10px;
}
.nav_button:nth-child(even) {
    background: #6A3382;
}
.nav_dropdown {
    padding: 0 !important;
}
.dropdown_title {
    display: grid;
    grid-template-columns: calc(100% - 60px) 50px;
    padding: 10px;
    cursor: pointer;
}
.dropdown_text {
    display: flex;
    align-items: center;
}
.dropdown_icon {
    font-size: 30px;
    text-align: center;
}
.nav-hidden {
    display: none !important;
}
.hidden {
    display: none !important;
}
.dropdown_contents {
    display: flex;
    flex-wrap: wrap;
}
.dropdown_button {
    width: 100%;
    padding: 10px;
    background: #9F60B9;
    text-decoration: none;
}
.dropdown_button:link {
    color: #FFFFFF;
}
.dropdown_button:visited {
    color: #FFFFFF;
}
.dropdown_button:nth-child(even) {
    background: #AA73C2;
}

@media screen and (min-width: 1200px) {
    .nav_trigger, .nav_menu_title, .nav_login_burger {
        display: none !important;
        height: auto;
    }
    .nav-hidden {
        display: block !important;
    }

    .nav_elements {
        width: calc(100% - 100px);
        top: 70px;
        min-height: 60px;
        height: auto;
        margin: 0 40px 0 40px;
        z-index: 5;
        background: none;
        overflow: visible;
    }
    .nav_container {
        height: 50px;
        width: calc(100% - 20px);
        margin: 0 10px 0 10px;
        left: 0;
        background: #ECF0F1;
        border-radius: 0px 0px 10px 10px;
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
    }
    .nav_button, .nav_button:visited, .nav_button:link {
        width: auto !important;
        background: none;
        color: #5C5C5C;
        text-align: center;
        vertical-align: center;
        padding: 15px;
    }
    .nav_button:nth-child(even) {
        background: none;
    }
    .nav_list {
        display: flex;
    }
    .dropdown_icon {
        font-size: 20px;
    }
    .dropdown_title {
        grid-template-columns: calc(100% - 30px) 30px;
        padding: 12px;
    }
    .dropdown_contents {
        position: absolute;
        z-index: 1;
        top: 55px;
        width: 150px;
        max-height: 300px;
        overflow-y: auto;
        background: #FFFFFF;
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
        border-radius: 5px;
    }
    .dropdown_button {
        background: none;
    }
    .dropdown_button:nth-child(even) {
        background: none;
    }
    .dropdown_button:hover {
        background: #bdc3c7;
    }
    .dropdown_button:link {
        color: #5C5C5C;
    }
    .dropdown_button:visited {
        color: #5C5C5C;
    }
}
.secondary_openButton {
    position: fixed;
    z-index: 2;
    background: #8E44AD;
    border-radius: 15px 0px 0px 15px;
    width: 45px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    margin-left: calc(100vw - 45px);
    top: calc(50% - 23px)
}
/*.secondary_sector {
    position: absolute;
    z-index: 3;
}*/
.secondaryContainer_data {
    position: fixed;
    z-index: 6;
    top: 0;
    width: 80vw;
    height: 100vh;
    left: 20%;
    background-color: #8E44AD;
    color: #FFFFFF;
}
.secondaryContainer_trigger {
    position: fixed;
    z-index: 5;
    top: 0;
    width: 20%;
    height: 100vh;
    background: #00000055;
}
.secondary_sectorTitle {
    display: grid;
    grid-template-columns: auto 50px;
    background: #4E255F;
}
.secondary_sectorText {
    font-size: 20px;
    margin: 10px;
    margin-left: calc(50% - 20px);
}
.secondary_sectorClose {
    font-size: 30px;
    padding: 5px 10px 5px 15px;
    background: #72328C;
    cursor: pointer;
}
.secondary_sectorTitleFull {
    text-align: center;
    font-size: 20px;
    padding: 10px;
    background: #4E255F;
}
.secondary_hidden {
    display: none;
}
.secondary_hidden_trigger {
    display: none;
}
.footer {
    position: fixed;
    bottom: 0;
    height: 60px;
    width: 100vw;
    background: #8E44AD;
    display: flex;
    text-align: center;
    align-items: center;
    color: white;
}
.footer_content {
    width: 100%;
    font-size: 12px;
}
.primaryContainer {
    /*max-height: calc(100vh - 175px);*/
    margin: 60px 0 60px 0;
}
.blog-title {
    width: calc(100vw - 10px);
    height: 40px;
    border-bottom: 2px solid #8E44AD;
    display: flex;
    align-items: center;
    padding-left: 10px;
    color: #8E44AD;
}
.table-blog {
    border: none !important;
    font-size: 14px;
    vertical-align: bottom;
}
.blog-data {
    color: #707070;
    font-size: 12px;
}
.blog-seeMore {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    text-align: center;
    background: #7f8c8d;
    color: #FFF !important;
    text-decoration: none;
    cursor: pointer;
}
a.blog-seeMore:link {
    color: #FFF !important;
}
a.blog-seeMore:visited {
    color: #FFF !important;
}
.blog-seeMoreData {
    width: 100%;
}

@media screen and (max-width: 1599px) {
    .informations-anchor-link {
        background: #6A3382;
        color: white !important;
    }
    .informations-anchor-link:nth-child(even) {
        background: #5C2C71;
    }
}
@media screen and (min-width: 1000px) {
    .footer_content {
        font-size: 16px;
    }
}
@media screen and (min-width: 1200px) {
    .container {
        display: grid;
        grid-template-columns: auto 420px;
        margin-top: 60px;
    }
    .secondary_openButton {
        display: none;
    }
    .secondary_hidden {
        display: block;
    }
    .secondaryContainer {
        margin-top: -130px;
    }
    .secondaryContainer_data {
        max-height: calc(100vh - 180px);
        margin: 130px 10px 70px 0;
        position: relative;
        z-index: 0;
        top: auto;
        width: auto;
        height: auto;
        left: auto;
        background-color: #FFFFFF00;
        color: #000;
    }
    .primaryContainer {
        margin: 0 10px 70px 10px;
        border-radius: 10px;
        height: auto;
        overflow: hidden;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
    .no-scroll {
        overflow: auto;
    }
    .secondary_sectorTitle {
        display: block;
    }
    .secondary_sectorTitle,.secondary_sectorTitleFull {
        background: #8E44AD;
        color: white;
    }
    .secondary_sectorClose {
        display: none;
    }
    .secondary_sectorText {
        text-align: center;
        padding: 10px;
        margin: 0;
    }
    .secondary_sector {
        background-color: #FFFFFF;
        border-radius: 10px;
        height: auto;
        overflow: hidden;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
    .secondary_sector:nth-child(even) {
        margin-top: 20px;
    }
}

.read_article {
    margin-right: 15px;
}
@media screen and (max-width: 650px) {
    .read_article {
        display: none;
    }
}
.slide-seeMore {
    position: absolute;
    color: white !important;
    background: #8E44AD; 
    top: 0; 
    right: 15px; 
    border-radius: 10px; 
    width: 150px; 
    height: 35px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-decoration: none;
}
a.slide-seeMore:visited {
    color: white;
}