.associated-centers__wrapper {
    max-width: 100%;
    margin: 24px auto;
    font-family: "Titillium", sans-serif;
}

.associated-centers__wrapper>section {
    background-color: #fff;
    margin-bottom: 16px;
    border-radius: 4px;
}

/** Main title **/
.associated-centers__wrapper>section>header>h2 {
    margin: 0;
    font-weight: 700;
    color: #00533F;
    margin-bottom: 16px;
    font-size: 1.5em;
}

.associated-centers__wrapper>section>article {
    padding: 16px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    box-shadow: 1px 1px 2px 1px #e4e4e4;
    border-left: 6px solid #00533F;
    box-sizing: border-box;
    transition: ease-out .2s;
}

.associated-centers__wrapper>section>article:hover {
    background-color: #00000005;
}

.associated-centers__wrapper>section>article:not(:last-child) {
    margin-bottom: 24px;
}

/** Subtitle (Code - City) **/
.associated-centers__wrapper>section>article>header>h3 {
    margin: 0 0 16px 0;
    color: #90214a;
    font-size: 1.17em;
    font-weight: bold;
}

/** Generic details **/
.associated-centers__wrapper>section>article>ul {
    list-style: none;
    padding: 16px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    background-color: #00533F10;
}

.associated-centers__wrapper>section>article>ul>li {
    display: flex;
    gap: 4px;
    color: #7c7c7c;
    font-size: 14px;
}

.associated-centers__wrapper>section>article>ul>li>address {
    font-style: normal;
}

.associated-centers__wrapper>section>article>ul>li>a {
    color: #90214a;
    text-decoration: none;
    font-weight: 700;
}

.associated-centers__wrapper>section>article>ul>li:not(:last-child) {
    border-right: 1px solid #e4e4e4;
    padding-right: 16px;
}

.associated-centers__wrapper>section>article>ul>li>p.associated-centers__labels {
    font-weight: 700;
}

/** Academic wrapper **/
.associated-centers__wrapper>section>article>div {
    border-top: 1px solid #e4e4e4;
    margin-top: 16px;
    padding-top: 16px;
}

.associated-centers__wrapper>section>article>div>button {
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 4px;
    vertical-align: middle;
    border: none;
    padding: 4px 16px 4px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    margin: auto;
    background-color: #90214a;
    color: #fff;
    border-radius: 16px;
}

.associated-centers__wrapper>section>article>div>button>svg.rotated-icon {
    transform: rotate(180deg);
}

/** Accordion **/
.associated-centers__wrapper>section>article>div .accordion__wrapper {
    display: none;
    margin-top: 24px;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper.accordion__wrapper--active {
    display: block;
}

/** Tabs **/
.associated-centers__wrapper>section>article>div .accordion__wrapper nav {
    margin-top: 16px;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper nav>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper nav>ul>li {
    flex: 1;
    background-color: #00533F10;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper nav>ul>li>button {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    border-left: none;
    padding: 8px;
    font-weight: 700;
    cursor: pointer;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper nav>ul>li>button:first-child {
    border-left: 1px solid #e4e4e4;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper nav>ul>li.accordion__wrapper-item--active button {
    background-color: #00533F;
    color: #fff;
    cursor: default;
}

/** Tab content **/
.associated-centers__wrapper>section>article>div .accordion__wrapper .tabs-content {
    margin-top: 24px;
    background-color: #fff;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper .tabs-content .tab-content {
    display: none;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper .tabs-content .tab-content.tab-content--active {
    display: block;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper .tabs-content .tab-content>.body-content__wrapper>div,
.associated-centers__wrapper>section>article>div .accordion__wrapper .tabs-content .tab-content>header {
    display: flex;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper .tabs-content .tab-content>.body-content__wrapper {
    flex-direction: column;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper .tabs-content .tab-content>.body-content__wrapper>div {
    border-bottom: 1px solid #e4e4e4;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper .tabs-content .tab-content>.body-content__wrapper>div:nth-child(even) {
    background-color: #e4e4e450;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper .tabs-content .tab-content>.body-content__wrapper>div>*,
.associated-centers__wrapper>section>article>div .accordion__wrapper .tabs-content .tab-content>header>h4 {
    flex: 1;
    padding: 8px;
    margin: 0;
    font-size: 14px;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper .tabs-content .tab-content>.body-content__wrapper>div>a {
    font-weight: 700;
    color: #90214a;
    text-decoration: none;
}

.associated-centers__wrapper>section>article>div .accordion__wrapper .tabs-content .tab-content>header {
    background-color: #e4e4e4;
}

@media (max-width: 767px) {
    .associated-centers__wrapper>section>article>ul>li:not(.associated-centers__phone-wrapper){
        display: block;
    }

    .associated-centers__wrapper>section>article>ul>li>p,
    .associated-centers__wrapper>section>article>ul>li>address{
        margin-bottom: 7px;
    }

    .associated-centers__wrapper>section>article>ul>li>a{
        word-break: break-word;
    }

    .associated-centers__wrapper>section>article>ul>li:not(:last-child) {
        border-right: none;
    }
    .associated-centers__wrapper>section>article>div .accordion__wrapper nav>ul{
        flex-direction: column;
    }
    .associated-centers__wrapper>section>article>div .accordion__wrapper nav>ul>li>button{
        padding: 12px 8px;
    }
}

/* Componente equipamientoAula */

.equipamiento-aulas__section .table tr td,
.equipamiento-aulas__section .table tr th,
.equipamiento-aulas__section .equipamiento-card__icons i{
    color: black;
    font-size: 14px;
}

.equipamiento-aulas__section .table tr td{
    background-color: unset!important;
}

.equipamiento-aulas__section .thead-uned th{
    background-color: #00533F10!important;
    font-weight:700;
}

.equipamiento-aulas__section .card{
    border: 1px solid #e4e4e4!important;
    margin-bottom: 24px;
    border-radius: 4px!important;
    box-shadow: 1px 1px 2px 1px #e4e4e4;
}

.equipamiento-aulas__section .card-body{
    padding: 1.25rem!important;
    border-radius: 4px !important;
}

.equipamiento-aulas__section .card-title{
    color:rgb(144, 33, 74);
    font-weight: bold;
    margin-bottom:0.5rem;
    font-size:1.17rem;
}

.equipamiento-aulas__section .card-subtitle{
    color:rgb(115, 115, 115)
}

.equipamiento-aulas__section .toggle-graphic__button {
	background-color: #00533F;
	border-color: #00533F;
}