/* Base */
body {
    background: var(--color-one);
    color: var(--color-two);
    font-size: 16px;
    font-family: var(--font-two);
    line-height: 24px;
    min-height: 100vh;
}

a {
    font-family: var(--font-one);
    color: var(--color-contrast);
}

/* Cuerpo Principal */
#forum-body {
    background-image: var(--pattern);
    background-position: center;
    background-attachment: fixed;
    background-repeat: repeat;
}

/* Elementos generales */
.msg-element {
    padding: 1rem;
    border: 2px solid var(--color-two);
    background: var(--color-one);
    cursor: default;
}

.page-anchor {
    position: absolute;
    top: calc(-2.5rem + 1px);
}

.dropdown-content,
.navbar-item .navbar-dropdown {
    box-shadow: none;
    border: 2px solid var(--color-two);
    border-radius: 0;
    background: var(--color-one);
    padding: .5rem;
}

.dropdown-menu hr,
.is-hidden-touch .navbar-item .navbar-dropdown hr {
    margin: .5rem -.5rem;
}

.dropdown-menu::before,
.is-hidden-touch .navbar-item .navbar-dropdown::before {
    content: '';
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--color-two);
}

.dropdown-menu::after,
.is-hidden-touch .navbar-item .navbar-dropdown::after {
    content: '';
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--color-one);
}

.is-hidden-desktop .navbar-item .navbar-dropdown hr {
    background-color: transparent;
}

input[type="text"],
input[type="password"],
input[type="number"] {
    width: 100%;
    height: 40px;
    font-family: var(--font-one);
    border: 2px solid var(--color-two);
    background: var(--color-one);
    color: var(--color-two);
    padding: 0 .75rem;
}

select[disabled],
input[type="text"][disabled],
input[type="password"][disabled] {
    background: var(--color-two);
    color: var(--color-one);
}

textarea {
    width: 100%;
    min-height: 300px;
    background: var(--color-one);
    color: var(--color-two);
    font-size: 1rem;
    line-height: 24px;
    padding: .75rem;
    border: 2px solid;
    resize: vertical;
}

select {
    width: 100%;
    height: 40px;
    font-family: var(--font-one);
    border: 2px solid var(--color-two);
    background: var(--color-one);
    color: var(--color-two);
    padding: 0 .5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

select option {
    background: var(--color-one);
}

.select-container {
    position: relative;
    width: 100%;
}

.select-container::after {
    border: 3px solid var(--color-two);
    border-radius: 2px;
    border-right: 0;
    border-top: 0;
    content: " ";
    display: block;
    height: .625em;
    margin-top: -.4375em;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: rotate(-45deg);
    transform-origin: center;
    width: .625em;
    right: .825em;
}

.select-container select {
    cursor: pointer;
}

.button1,
.button2 {
    background: var(--color-one);
    border: 2px solid var(--color-contrast);
    font-family: var(--font-one);
    font-size: .9rem;
    padding: .5rem;
    color: var(--color-contrast);
    cursor: pointer;
    margin: 0 .25rem;
    order: 1;
}

.btn-main,
input[type="submit"][value="Enviar"] {
    background: var(--color-contrast);
    color: var(--color-one);
    box-shadow: inset 2px 2px 0 var(--color-one), inset -2px -2px 0 var(--color-one);
    order: 0;
}

/* Modal */
#forum-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 950;
}

#forum-modal .modal-title h3 {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    cursor: default;
    font-size: 1.25rem;
}

#forum-modal .modal-title h3::before {
    display: none;
}

#forum-modal .modal-element {
    z-index: 955;
}

#forum-modal .modal-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--color-contrast);
}

#forum-modal .modal-title>* {
    color: var(--color-one) !important;
}

#forum-modal .modal-title a {
    padding: 0;
    border: 0;
}

#forum-modal .modal-content {
    background: var(--color-one);
    border: 2px solid var(--color-contrast);
    border-top: none;
    padding: 1rem;
    margin: 0;
    overflow: inherit;
    max-height: initial !important;
}

#forum-modal .modal-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

#forum-modal .modal-buttons>* {
    margin-left: .5rem;
    margin-right: 0;
}

#forum-modal .modal-content>.is-content>*::before {
    content: '' !important;
}

/* Índice */
.forum-head {
    margin-bottom: 2rem;
}

.forum-head>h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 105px;
    background-image: var(--header);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    font-size: 2rem;
    padding: 1.75rem;
    border: 2px solid var(--color-contrast);
    text-align: center;
}

/* Foros */
.forum-header {
    display: flex;
    align-items: center;
    color: var(--color-two) !important;
    margin-bottom: 1rem;
}

.forum-header .is-default {
    cursor: pointer !important;
}

.forum-url {
    display: block;
    overflow: hidden;
    padding: 1rem;
    padding-right: 0;
    flex: 1 1 auto;
    border-left: 2px solid;
}

.forum-url h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.forum-desc {
    height: 250px;
    border: 2px solid var(--color-contrast);
    background-image: var(--header);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 1.75rem;
}

.forum-desc-interior {
    border: 2px solid var(--color-contrast);
    background: var(--color-one);
    padding: 1rem;
    height: 100%;
    font-size: .9rem;
    line-height: 1.3rem;
    overflow-y: auto;
}

.forum-desc-interior>br:last-child {
    display: none;
}

.forum-desc-background {
    display: block;
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
    margin: -1rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.forum-desc-background.is-hover .forum-desc-content {
    opacity: 0;
    transition: .5s ease-in-out;
}

.forum-desc-background.is-hover:hover .forum-desc-content {
    opacity: 1;
}

.forum-desc-content {
    padding: 1rem;
    background: var(--color-one);
    width: 100%;
    height: 100%;
    cursor: default;
}

.forum-last {
    text-align: center;
    font-family: var(--font-one);
    background: var(--color-one);
    border: 2px solid var(--color-contrast);
    border-top: 0;
    padding: 0.25rem 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.forum-last,
.forum-last .forum-last-author>strong {
    font-size: 0.8rem !important;
}

/* Elemento de listado de temas */
.topiclist-topic .topic-title h3 {
    display: flex;
    flex-flow: column;
    text-align: left;
    color: var(--color-two);
    cursor: pointer !important;
}

.topiclist-topic .topic-title h3 .lower-section {
    margin-top: .25rem;
}

.topiclist-header h3::before,
.topiclist-topic .topic-title h3::before {
    display: none;
}

.topiclist-topic .topic-title h3 span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.topic-title>a h3 {
    font-size: 1.25rem;
}

/* Header de lista de temas */
.topiclist-header {
    margin-bottom: 1.25rem;
}

.topiclist-header ul {
    display: flex;
    justify-content: space-between;
}

.topiclist-header ul li:first-child {
    padding-left: 3.825rem;
}

.topiclist-header ul li:first-child h3 {
    text-align: left;
}

.topiclist-header ul li:last-child {
    padding-right: calc(90px + 1rem);
}

.topiclist-header ul li:last-child h3 {
    text-align: right;
}

/* Elemento de listado de temas */
.topiclist-topics>li {
    margin-bottom: 1rem;
}

.topiclist-topics>li:last-child {
    margin-bottom: 0;
}

.topiclist-topics>li {
    display: flex;
}

.topiclist-topic {
    display: flex;
    flex: 1 1 auto;
}

.topiclist-topics>li.row::before {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    width: 2rem;
    background-image: var(--header);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: repeat;
    color: var(--color-contrast);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: 2px solid;
    margin-right: 1rem;
}

.topiclist-topics>li.row.is-unread::before {
    color: var(--color-two) !important;
    filter: grayscale(1);
}

.topiclist-topics>li.row.is-closed::before {
    content: '\f023' !important;
}

.topiclist-topics>li.row.is-sticky::before {
    content: '\f12a' !important;
}

.topiclist-topics>li.row.is-announcement::before {
    content: '\f27a' !important;
}

.topiclist-topics>li.row.is-global-announcement::before {
    content: '\f0f3' !important;
}

.topic-inner {
    display: flex;
    flex: 1 1 auto;
    max-width: calc(100vw - 90px - 5.5rem);
    min-height: 90px;
    align-items: center;
    justify-content: space-between;
    background: var(--color-one);
    padding: 1rem;
    border: 2px solid var(--color-contrast);
    border-right: none;
}

.topic-title {
    min-width: 0;
    margin-right: 1rem;
}

.topic-title>a {
    display: block;
}

.topic-extra {
    display: flex;
    align-items: center;
    line-height: 1.25rem;
}

.topic-author {
    order: 1;
}

.topic-extra-separador {
    order: 2;
    margin: 0 .25rem;
    display: none;
}

.topic-pagination+.topic-extra-separador {
    display: block;
}

.topic-pagination {
    order: 3;
    font-size: .825rem;
    font-family: var(--font-one);
    text-transform: uppercase;
}

.topic-pagination .pagination {
    display: inline-flex;
    margin: 0;
    font-weight: normal;
    font-size: .825rem;
    color: var(--color-two);
}

.topic-pagination .pagination .page-sep:last-child {
    display: none;
}

.topic-lastpost {
    flex: 0 0 auto;
    width: 90px;
    height: 90px;
    background: var(--color-contrast);
    color: var(--color-one) !important;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topic-repliesandviews {
    flex: 0 0 auto;
}

.topic-repliesandviews>span {
    display: block;
    cursor: default;
    text-align: right;
}

.topic-repliesandviews>span,
.topic-author {
    font-family: var(--font-one);
    line-height: 1.25rem;
    text-transform: uppercase;
    font-size: .825rem;
}

.has-small-topiclist .topiclist-header ul li:last-child {
    padding-right: calc(60px + 1rem);
}

.has-small-topiclist .topiclist-topic {
    width: calc(100% - 3rem);
}

.has-small-topiclist .topic-inner {
    padding: .5rem 1rem;
    min-height: 40px;
    max-width: calc(100% - 60px);
}

.has-small-topiclist .topic-repliesandviews span {
    font-size: .825rem;
    line-height: 1rem;
}

.has-small-topiclist .topic-lastpost {
    height: 60px;
    width: 60px;
    font-size: 1.5rem;
}

.has-small-topiclist .topic-title h3 {
    font-size: 1rem;
}

.topic-mp .forum-checkbox,
.topic-mp .checkbox-content,
.topic-mp .forum-checkbox .checkbox-click {
    color: var(--color-one);
    border: none;
    width: 100%;
    height: 100%;
}

/* Bloque de post */
.forum-postlist .post {
    margin-bottom: 2rem;
}

.forum-postlist .post:last-child {
    margin-bottom: 0;
}

.postlist-post {
    position: relative;
    display: flex;
    padding-top: 1.5rem;
    border-top: 2px solid var(--color-contrast);
    justify-content: space-between;
}

.post-content {
    display: flex;
    justify-content: space-between;
    flex: 1 1 auto;
    max-width: 600px;
}

.post-content .is-content {
    width: 100%;
    max-width: 520px;
    flex: 0 1 auto;
    overflow: hidden;
    padding-bottom: 1px;
}

.post-content .post-title {
    text-align: right;
    font-family: var(--font-one);
    margin-bottom: 1.5rem;
    cursor: default;
}

.post-content .post-title a {
    color: inherit;
    cursor: default;
    border: none;
}

.post-buttons {
    display: flex;
    flex-flow: column;
    flex: 0 0 auto;
    margin-left: 1rem;
}

.post-button {
    display: flex;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--color-contrast);
    color: var(--color-one) !important;
    font-size: .9rem;
    justify-content: center;
    align-items: center;
}

.post-buttons li {
    margin-top: .75rem;
}

.post-buttons li:first-child {
    margin-top: 0;
}

.profile-sticky {
    position: sticky;
    top: 4rem;
    align-self: flex-start;
}

/* Bloque de miniperfil */
.post-profile {
    margin-right: 1.5rem;
}

.post-profile .postprofile {
    display: flex;
}

.postprofile-tab.active {
    background: var(--color-two);
    color: var(--color-one) !important;
}

.postprofile-tab-content {
    border: 2px solid;
    background: var(--color-one);
}

.postprofile-avatar a,
.postprofile-avatar img {
    display: block;
}

.post-profile .is-hidden-mobile .postprofile,
.post-profile .is-hidden-mobile {
    flex-flow: column;
    width: 224px;
}

.post-profile .is-hidden-mobile .postprofile>* {
    margin-bottom: .5rem;
}

.is-hidden-mobile .postprofile-name {
    order: 1;
}

.is-hidden-mobile .postprofile-job {
    order: 4;
    margin-bottom: 0 !important;
}

.postprofile-fields {
    padding: .7rem .5rem;
}

.postprofile-field {
    font-family: var(--font-one);
    line-height: .885rem;
    font-size: .725rem;
    cursor: default;
}

.postprofile-field-label,
.postprofile-field-content {
    display: block;
    white-space: nowrap;
    font-style: normal;
    font-weight: 400;
    padding: 0 .5rem;
}

.postprofile-field-label {
    color: var(--color-contrast);
    border-bottom: 2px solid;
    padding-bottom: .495rem;
    margin-bottom: .495rem;
}

.postprofile-field-content {
    text-align: right;
}

.is-hidden-mobile .postprofile-tab-content-container {
    order: 2;
}

.is-hidden-mobile .postprofile-tabs {
    order: 3;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0 !important;
}

.is-hidden-mobile .postprofile-remains-container,
.is-hidden-mobile .postprofile-tab-content {
    display: none;
}

.is-hidden-mobile .postprofile-tab-content.active {
    display: block;
}

.is-hidden-mobile .postprofile-tab {
    color: inherit;
    cursor: pointer;
    width: calc((100% / 3) - 5px);
    text-align: center;
    font-family: var(--font-one);
    font-size: .9rem;
    border: 2px solid var(--color-two);
    padding: .25rem 0;
}

.is-hidden-mobile .postprofile-tab-content {
    height: 304px;
}

.is-hidden-tablet .postprofile-avatar img {
    height: auto;
}

.postprofile-head {
    display: block;
    background: transparent;
    color: var(--color-two) !important;
    padding: 1rem;
    margin-bottom: 1rem !important;
    border-left: 2px solid var(--color-contrast);
}

.postprofile-head h3 {
    font-size: 1.5rem;
}

.postprofile-head div {
    text-transform: uppercase;
    font-size: .925rem;
    font-family: var(--font-one);
    line-height: 1.25rem;
}

.is-hidden-mobile .postprofile-name {
    order: 1;
}

.is-hidden-mobile .postprofile-job {
    order: 4;
    margin-bottom: 0;
}

.is-hidden-mobile .postprofile-field-empleo,
.is-hidden-mobile .postprofile-contact-email {
    display: none;
}

.is-hidden-mobile .postprofile-tab-content.postprofile-tab-content-enlaces {
    padding: 1rem;
}

.is-hidden-mobile .postprofile-contact {
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: space-between;
}

.is-hidden-mobile .postprofile-contact>* {
    margin-top: 1rem;
    height: 100%;
}

.is-hidden-mobile .postprofile-contact>*:first-child {
    margin-top: 0;
}

.is-hidden-mobile .postprofile-contact-item {
    font-family: var(--font-one);
    border: 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    padding: .8rem;
    color: var(--color-two);
    height: 100%;
}

.is-hidden-tablet .postprofile-avatar {
    max-width: 40%;
    flex: 0 1 auto;
}

.is-hidden-tablet .postprofile-info {
    display: flex;
    flex-flow: column wrap;
    flex: 1 0 auto;
    width: 70%;
    font-size: .9rem;
    font-family: var(--font-one);
    margin-left: 1rem;
    justify-content: center;
}

.is-hidden-tablet .postprofile-info .postprofile-links {
    font-size: .75rem;
}

.profile-signature {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-signature>img {
    display: block;
}

/* Widgets */
aside#right {
    width: 250px;
    margin-left: 3rem;
    flex-shrink: 0;
}

.plank-element {
    margin-bottom: 2rem;
}

.plank-element:last-child {
    margin-bottom: 0;
}

.plank-element>h3 {
    margin-bottom: 1rem;
    height: 36px;
    border-left: 2px solid;
    line-height: 36px;
    padding-left: 1rem;
    font-size: 1.5rem;
}

.plank-content {
    width: 250px;
    height: 250px;
    border: 2px solid var(--color-contrast);
    background-image: var(--header);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 1.75rem;
}

.plank-content .plank-inner {
    border: 2px solid var(--color-contrast);
    background: var(--color-one);
}

.plank-content .plank-inner,
.plank-inner>* {
    height: 100%;
}

#links-container .columns {
    display: flex;
}

#links-container a {
    flex: none;
    width: 50%;
    color: var(--color-two);
    font-size: .9rem;
    text-transform: uppercase;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#anmt-main {
    display: flex;
    flex-flow: column;
}

.anmt-element {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 1rem;
    text-transform: uppercase;
    color: var(--color-two) !important;
    height: 100%;
    flex: 0 1 auto;
}

.anmt-title {
    font-size: .8rem;
    line-height: 1rem;
}

.anmt-sep {
    height: 2px;
    background: var(--color-two);
    margin: 0 4rem;
    flex: none;
}

.a-image a {
    display: block;
    position: relative;
}

#admin-main {
    display: flex;
    flex-flow: column;
}

.admin-element {
    width: 100%;
    flex-grow: 1;
    flex-shrink: 1;
    color: var(--color-two) !important;
    background-size: cover;
    background-position: center;
    position: relative;
    line-height: .825rem;
}

.admin-element>* {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1.5s ease-in-out;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
}

.admin-element:hover .admin-name,
.admin-element:not(:hover) .admin-desc {
    opacity: 0;
}

/* Topbar */
#topbar {
    min-height: 32px;
    margin-bottom: 1rem;
    text-align: center;
}

#topbar a {
    display: block;
    color: var(--color-two) !important;
}

#topbar a h3 {
    cursor: pointer !important;
    height: 36px;
    line-height: 36px;
    font-size: 1.5rem;
}

#topbar .is-hidden-tablet h3 * {
    line-height: 90%;
}

/* Bloque del separador */
.forumseparator-element {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    margin: 3rem auto;
}

/* Botones del foro */
.forum-button {
    display: flex;
}

.forum-button .icon {
    width: 40px;
    height: 40px;
    background: var(--color-contrast);
    color: var(--color-one);
}

.forum-button .text {
    display: flex;
    align-items: center;
    height: 40px;
    background: var(--color-one);
    font-size: .9rem;
    font-family: var(--font-one);
    padding: 0 .725rem;
    border: 2px solid;
    border-left: 0;
}

.dropdown .forum-button .text {
    padding-right: 2.5em;
    position: relative;
}

.dropdown-menu {
    min-width: inherit;
    padding-top: 15px;
}

.dropdown-menu::before {
    right: 10px;
    top: 7px;
}

.dropdown-menu::after {
    top: 10px;
    right: 10px;
}

.dropdown-item {
    font-size: 0.825rem;
    color: var(--color-two) !important;
    background: transparent !important;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 10px;
    padding-right: 0 !important;
}

.dropdown-item:last-child {
    margin: 0;
}

.dropdown .forum-button .text::after {
    border: 3px solid transparent;
    border-radius: 2px;
    border-right: 0;
    border-top: 0;
    content: " ";
    display: block;
    height: .625em;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: rotate(-45deg);
    transform-origin: center;
    width: .625em;
    margin-top: -.375em;
    right: 13px;
    border-color: inherit;
}

#lower-controls .dropdown .dropdown-menu {
    padding-bottom: 15px;
}

#lower-controls .dropdown .forum-button .text::after {
    transform: rotate(135deg);
    margin-top: -.2em;
}

#lower-controls .dropdown .dropdown-menu::after,
#lower-controls .dropdown .dropdown-menu::before {
    transform: rotate(180deg);
    top: initial;
    bottom: 7px;
}

#lower-controls .dropdown .dropdown-menu::after {
    bottom: 10px;
}

#lower-controls .dropdown .dropdown-menu {
    bottom: 100%;
    padding-top: initial;
    top: auto;
}

/* Bloque de controles */
.forum-controls {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    margin: -.5rem 0 !important;
}

.forum-controls>* {
    margin: .5rem 0 !important;
}

#upper-controls.forum-controls {
    margin-bottom: 1.5rem !important;
}

#lower-controls.forum-controls {
    margin-top: 1.5rem !important;
}

.forum-controls .right {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
}

.forum-controls .right li {
    display: block;
    margin-left: .625rem;
    margin-bottom: 0;
}

.forum-controls .right li:first-child {
    margin-left: 0;
}

.page-pagination {
    display: flex;
    font-size: 0;
    flex-flow: wrap;
    margin: .25rem 0 !important;
}

.page-pagination>* {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 40px;
    background: var(--color-one);
    font-family: var(--font-one);
    font-size: 1rem;
    font-weight: normal;
    border: 2px solid;
    margin: .25rem .5rem;
    margin-left: 0;
}

.page-pagination>.page-sep {
    display: none;
}

.page-pagination>.page-spacer {
    border-color: transparent !important;
    background: transparent !important;
    padding: 0 !important;
    font-size: 30px !important;
    align-items: flex-end !important;
    width: auto !important;
}

.page-pagination>strong {
    cursor: default;
}

.page-pagination>.page-action {
    color: var(--color-one);
    background: var(--color-contrast);
    border-color: var(--color-contrast);
}

/* Bloque de estadísticas */
.category-estadisticas {
    margin-bottom: 0;
}

.category-estadisticas .subforum-element {
    display: flex;
    flex-flow: wrap;
}

#nuevas-conexiones,
#grupos-foro {
    max-width: 450px;
}

#nuevas-conexiones a {
    font-family: var(--font-two);
}

#grupos-foro {
    margin-top: 2rem;
}

.category-estadisticas h6 {
    font-size: 1rem;
}

.special-title {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    line-height: 100%;
}

/* Bloque del censo */
#census {
    display: flex;
    flex-flow: row wrap;
    min-height: 100px;
    margin-top: -10px;
}

#census li {
    width: 135px;
    height: 40px;
    margin-right: 10px;
    margin-top: 10px;
}

#census a {
    display: flex;
    height: 100%;
    color: inherit;
    font-family: var(--font-one);
    font-weight: 600;
    align-items: center;
    flex-flow: row-reverse;
}

.census-name {
    width: calc(100% - 40px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentcolor;
    border-left: 0;
    padding: 0 .725rem;
}

.census-name::after {
    font-size: .9rem;
    font-weight: normal;
}

.census-count {
    width: 40px;
    height: 40px;
    background: currentColor;
    -webkit-text-fill-color: var(--color-one);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header y footer */
body>header img {
    max-width: 80vw;
    max-height: 200px;
}

.forum-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: var(--header);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: repeat;
    min-height: 400px;
    padding: 5vh 0;
}

/* Barra de navegación */
.forum-navbar {
    display: flex;
    justify-content: center;
    background: var(--color-contrast);
    font-size: .825rem;
    font-family: var(--font-one);
}

.forum-navbar .main-body {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.forum-navbar .navbar-item {
    padding: 0;
}

.forum-navbar .navbar-item:not(.has-dropdown) a {
    padding: .5rem .75rem;
}

.forum-navbar .navbar-item a {
    transition: 0.5s ease-in-out;
}

.forum-navbar .navbar-item a:focus {
    color: var(--color-one) !important;
    background: transparent !important;
}

.forum-navbar .navbar-item .navbar-dropdown a:focus {
    color: var(--color-two) !important;
}

.navbar-item .navbar-dropdown {
    top: calc(100% + 15px);
}

.navbar-item.has-dropdown.is-active .navbar-link,
.forum-navbar .navbar-item a:hover {
    color: var(--color-one);
    background-color: transparent !important;
}

.forum-navbar .navbar-dropdown .navbar-item {
    margin-bottom: 10px;
}

.forum-navbar .navbar-dropdown .navbar-item:last-child {
    margin-bottom: 0;
}

.forum-navbar .navbar-dropdown .navbar-item:hover {
    background-color: transparent !important;
}

.forum-navbar .navbar-link:not(.is-arrowless)::after {
    border-color: inherit;
}

.forum-navbar .navbar-dropdown a {
    color: var(--color-two) !important;
}

#multiaccount-transition {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
    background: var(--color-one);
    color: var(--color-two);
    font-size: 16px;
}

.is-hidden-touch .navbar-item .navbar-dropdown::before,
.is-hidden-touch .navbar-item .navbar-dropdown::after {
    top: -7px;
    right: .5rem;
}

.is-hidden-touch .navbar-item .navbar-dropdown::before {
    top: -10px;
    right: .5rem;
}

.forum-navbar ul {
    display: flex;
}

.forum-navbar a {
    display: flex;
    align-items: center;
    color: var(--color-one);
}

.forum-navbar a .text {
    line-height: 1rem;
    margin-left: 2px;
}

.navbar-divider {
    background: var(--color-two);
    margin: .5rem -.5rem;
}

#hmg-menu:not(.not-visible)+.bg-active,
.is-bgmodal {
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

#hmg-menu+.bg-active,
.is-bgmodal.bg-active {
    z-index: 920;
    background: rgba(0, 0, 0, .3);
}

#forum-footer,
#forum-footer a,
#forum-breadcrumb li a,
#forum-navbar-desktop .navbar-item a {
    font-size: .925rem;
}

/* Barra de controles */
#forum-navbar {
    position: sticky;
    top: 0;
    z-index: 800;
}

#hmg-button {
    padding: .5rem .75rem;
    font-size: 1.4rem;
    color: var(--color-one);
}

#hmg-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 95vw;
    max-width: 350px;
    height: 100vh;
    overflow: auto;
    background: var(--color-one);
    z-index: 950;
    flex-flow: column;
    transform: translateX(350px);
    transition: .5s;
}

#hmg-menu.visible {
    transform: translateX(0);
}

#hmg-menu h3 {
    padding: 2rem;
    font-size: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#hmg-menu h3 i {
    font-size: 2rem;
}

#hmg-menu ul {
    width: 100%;
    flex-flow: column;
    padding: 0 2rem;
}

#hmg-menu #user-selector #mcId {
    padding: 1rem;
    height: initial;
    font-size: 1rem;
}

#hmg-menu .text,
#hmg-menu ul .navbar-item {
    font-size: 1.05rem;
}

#hmg-menu ul .navbar-item a:hover {
    background: transparent !important;
}

#hmg-menu ul .has-dropdown .navbar-dropdown {
    border: none;
    background: transparent;
    padding: 0;
}

#hmg-menu ul .has-dropdown .navbar-dropdown .navbar-item {
    padding: .5rem .75rem;
    margin: 0;
}

#hmg-menu .navbar-item.has-dropdown .navbar-link {
    display: none;
}

#hmg-menu a,
#hmg-menu a:hover {
    color: var(--color-two) !important;
}

#forum-navbar #hmg-menu a {
    padding: 1rem 0;
}

#forum-navbar #hmg-menu a .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

#forum-navbar #hmg-menu a .text {
    font-size: 1.2rem;
    margin: 0;
}

#forum-navbar #hmg-menu #user-selector {
    padding: 1rem 0;
}

.forum-navbar .breadcrumb {
    display: flex;
    align-items: center;
    margin: 0;
}

.breadcrumb a {
    display: block;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

#forum-navbar a {
    font-size: 0.825rem;
}

#forum-navbar a:hover {
    color: var(--color-one);
}

/* Barra de breadcrumbs */
#forum-breadcrumb li.is-active a {
    color: var(--color-one);
}

#forum-breadcrumb li+li::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: .6rem;
    color: var(--color-one)
}

/* Créditos de foroactivo */
#forum-footer .left {
    flex: 0 0 auto;
    margin-right: 1rem;
}

#forum-footer .right {
    flex: 0 1 auto;
    white-space: nowrap;
    overflow: hidden;
}

#forum-credits {
    color: var(--color-one);
}

#forum-credits strong {
    font-weight: normal;
}

#forum-credits a {
    display: inline;
}

/* Bloque de afiliados */
#forum-footer .main-body {
    padding: .5rem 0;
}

#page-afiliates h4 {
    margin-bottom: 1rem;
    text-align: center;
}

#page-afiliates ul {
    max-width: 485px;
    margin: 0 auto;
}

#page-afiliates ul+h4 {
    margin-top: .925rem;
}

#for-cred ul li {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 1rem;
    line-height: 20px;
}

#for-cred ul li ul {
    display: flex;
    justify-content: space-around;
}

#for-cred ul li ul a {
    color: var(--color-two);
    font-size: 1rem;
    border-bottom: 0;
    padding-bottom: 0;
}

#for-cred ul li:last-child {
    line-height: 1rem;
    margin: 0;
}

.afi-collection ul {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}

.afi-collection ul li {
    width: 50px;
    height: 50px;
    margin: 3px;
}

.afi-collection ul a {
    display: block;
    padding-bottom: 0;
    border-bottom: none;
}

#for-afis-nosis li,
#for-afis-nosis img {
    width: 50px;
    height: 50px;
}

#for-afis-sis li,
#for-afis-sis img {
    width: 105px;
    height: 105px;
}

#for-afis-sis ul {
    max-width: 230px;
}

#for-afis-norm ul {
    justify-content: space-between;
    margin: -3px;
}

#for-afis-norm h4 {
    margin: 0;
}

#for-afis-norm h4 a {
    color: var(--color-two);
}

#credits-social ul li {
    margin: 0;
}

#credits-social a em {
    margin-right: .15rem;
}

/* Bloque últimos temas */
.ltopic-list li {
    margin-bottom: .5rem;
}

.ltopic-list li:last-child {
    margin-bottom: 0;
}

.ltopic-element {
    display: flex;
    align-items: center;
}

.ltopic-last {
    color: var(--color-contrast) !important;
    order: 0;
    margin-right: .725rem;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.ltopic-data {
    display: flex;
    flex-flow: column;
    min-width: 0px;
    line-height: 1.2rem;
}

.ltopic-data>* {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 400px;
}

.ltopic-title {
    color: var(--color-two) !important;
    font-family: var(--font-one) !important;
}

.ltopic-info a {
    font-family: var(--font-two);
    font-weight: bold;
}

#bloque-ultimostemas>small {
    display: block;
    margin-top: .5rem;
}

/* Panel de control */
.forum-field .field-name {
    flex: 0 1 auto;
    max-width: 225px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-family: var(--font-one);
    color: var(--color-contrast);
    margin-right: 1rem;
    border-bottom: 2px solid;
    cursor: default;
}

.forum-field .character-list {
    display: flex;
    flex-flow: wrap;
    margin: -.25rem !important;
    margin-top: .75rem !important;
}

.forum-field .character-list li {
    margin: .25rem !important;
    padding: .25rem .5rem;
    font-size: .825rem;
    font-family: var(--font-one);
    background: var(--color-contrast);
    color: var(--color-one);
    border-radius: .5rem;
    cursor: pointer;
}

.forum-field .date-dmy,
.forum-field .date-dmy label {
    display: flex;
}

.forum-field .date-dmy {
    justify-content: space-between;
}

.forum-field .date-dmy label {
    align-items: center;
}

.forum-field .date-dmy label input {
    width: 3.5rem;
    margin-left: 1rem;
    text-align: center;
}

.forum-field .date-element:not(.date-dmy) label>* {
    margin-top: .5rem;
}

.forum-field .character-selector {
    position: relative;
}

.forum-field .selector-list {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 100;
    top: 40px;
    border-left: 2px solid;
    border-right: 2px solid;
    max-height: 400px;
    overflow: auto;
    border-bottom: 2px solid;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.forum-field .selector-list::-webkit-scrollbar {
    display: none;
}

.forum-field .selector-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem;
    margin-bottom: 0;
    border-bottom: 2px solid var(--color-two);
    background: var(--color-one);
    cursor: pointer;
    font-family: var(--font-one);
    font-size: .825rem;
}

.forum-field .selector-list li:last-child {
    border-bottom: transparent;
}

.forum-field .character-selector .character-custom {
    color: var(--color-two);
    position: absolute;
    right: .825em;
    top: .45em;
}

.forum-field input[disabled]+.character-custom {
    color: var(--color-one);
}

.forum-field .selector-list li::before {
    display: none;
}

.forum-field .selector-list li:hover {
    background: var(--color-contrast);
    color: var(--color-one);
}

.forum-field .character-selector .selector-list:hover,
.forum-field .character-selector input:focus+.selector-list {
    display: block;
}

/* Bloque de aviso */
.forum-infoblock {
    background: var(--color-two);
    color: var(--color-one);
    padding: 1rem;
    font-family: var(--font-one);
    border: 2px solid var(--color-two);
    box-shadow: inset 2px 2px 0 var(--color-one), inset -2px -2px 0 var(--color-one);
    margin-bottom: 2rem;
}

.forum-infoblock>* {
    font-size: .925rem;
    cursor: default;
}

.forum-infoblock ul {
    list-style-type: square;
    padding-left: 1rem !important;
}

.forum-infoblock h5 {
    margin-top: 0 !important;
}

.forum-infoblock h5::before,
.forum-infoblock ul li::before {
    display: none;
}

/* Maquetación propia */
.is-content {
    text-align: justify;
}

.is-content h1,
.is-content h2,
.is-content h3,
.is-content h4,
.is-content h5,
.is-content h6,
.is-content p {
    margin-bottom: 1rem;
}

.is-content hr {
    height: 1rem;
    margin: 0;
    background: top;
}

.is-content ol,
.is-content ul {
    padding-left: 2.5rem;
}

.is-content ol li,
.is-content ul li {
    position: relative;
    margin-bottom: 1rem;
}

.is-content h6 {
    margin-bottom: .25rem;
    margin-top: 1.5rem;
}

.is-content h3:not(.no-dash)::before,
.is-content h4:not(.no-dash)::before,
.is-content h5:not(.no-dash)::before,
.is-content h6:not(.no-dash)::before {
    content: '— ';
    color: var(--color-contrast);
    font-weight: bold;
}

.is-content u {
    text-decoration: none;
}

.is-content u,
.is-content a {
    padding-bottom: 2px;
    font-family: inherit;
    border-bottom: 2px solid;
}

.is-content table {
    width: 100%;
    table-layout: fixed;
}

.is-content table th {
    font-family: var(--font-one);
    color: var(--color-contrast);
}

.is-content table th,
.is-content table td {
    padding: .5rem;
    border-bottom: 2px solid;
}

.is-content table tr:last-child td {
    border-bottom: 0;
}

.is-content ol li::before,
.is-content ul li::before {
    position: absolute;
    text-align: right;
    left: -2.5rem;
    width: 2rem;
}

.is-content ul li h4 {
    margin-bottom: 0;
}

.is-content ul li::before {
    content: '—';
}

.is-content ol li {
    counter-increment: special-list-counter;
}

.is-content ol li::before {
    content: counter(special-list-counter, upper-roman) '.';
    color: var(--color-contrast);
}

.is-content a,
.is-content u {
    padding-bottom: 0;
}

blockquote,
.codebox,
.spoiler,
.hidecode {
    background: var(--color-one);
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-left: 4px solid var(--color-contrast);
    padding: 1rem;
}

blockquote cite,
.codebox dt,
.spoiler dt {
    position: relative;
    z-index: 20;
    font-size: 1.125rem;
    font-family: var(--font-one);
    color: var(--color-contrast);
    cursor: default;
}

blockquote cite,
.codebox dd,
.spoiler dd,
.hidecode dd {
    position: relative;
    z-index: 20;
}

.adminbox-icon {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 4rem;
    color: var(--color-contrast);
    opacity: .2;
    z-index: 10;
}

blockquote cite a {
    border: none !important;
    padding: 0 !important;
}

.codebox dt,
blockquote cite {
    margin-bottom: 1rem;
    display: block;
    font-style: normal;
}

.codebox dt em {
    color: var(--color-two);
    font-style: normal;
}

.codebox code {
    display: block;
    padding: 0;
    background: transparent;
    color: inherit;
}

.spoiler {
    padding: 0;
    border-left: 0;
}

.spoiler dt {
    padding: 1rem;
    border-left: 4px solid var(--color-contrast);
    cursor: pointer;
}

.spoiler_content {
    display: none;
    padding: 0 1rem 1rem 1rem;
    border-left: 4px solid var(--color-contrast);
}

.spoiler_content.hidden {
    display: block;
}

.is-content h1:last-child,
.is-content h2:last-child,
.is-content h3:last-child,
.is-content h4:last-child,
.is-content h5:last-child,
.is-content h6:last-child,
.is-content p:last-child,
.is-content li:last-child {
    margin-bottom: 0;
}

/* Tablillas */
.is-content .user-coolquote {
    flex-flow: column;
}

.is-content .coolquote-quote,
.is-content .coolquote-from {
    flex: 0 0 auto;
    width: 100%;
    padding: .5rem;
}

.is-content .coolquote-quote {
    position: relative;
}

.is-content .coolquote-from {
    text-align: right;
    font-style: italic;
}

.is-content .coolquote-from::before {
    content: '— ';
}

.is-content .coolquote-quote .fas {
    position: absolute;
    color: var(--color-contrast);
    font-size: 1.5rem;
}

.is-content .coolquote-quote .fa-quote-left {
    left: -2rem;
    top: .5rem;
}

.is-content .coolquote-quote .fa-quote-right {
    right: -2rem;
    bottom: .5rem;
}

/* Memberlist y Grupos */
.forum-memberlist .topiclist-header li:last-child {
    padding-right: calc(47px + 1rem);
}

.memberitem-element,
.memberlist-avatar,
.memberlist-content,
.memberlist-list {
    display: flex;
}

.memberlist-members .row {
    margin-bottom: .5rem;
    padding-bottom: .25rem;
    border-bottom: 2px solid;
}

.memberitem-element,
.memberlist-avatar,
.memberlist-content {
    align-items: center;
}

.memberlist-avatar a,
.memberlist-avatar img {
    display: block;
}

.memberlist-avatar img {
    height: 62px;
}

.memberlist-content {
    justify-content: space-between;
    flex: 1 1;
    width: 100%;
}

.memberlist-data {
    display: block;
    background: 0 0;
    color: var(--color-two) !important;
    padding: 1rem;
}

.memberlist-data h3 {
    color: var(--color-contrast);
    font-size: 1.4rem;
}

.memberlist-infofield {
    font-family: var(--font-one);
    line-height: 1.25rem;
    text-transform: uppercase;
    font-size: .825rem;
    text-align: right;
}

.memberlist-mp {
    font-size: 2rem;
    margin: 1rem;
}

.memberlist-infofield a {
    color: inherit;
}

/* Perfil de usuario */
#profile-head {
    display: flex;
    justify-content: space-between;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

#profile-minifields {
    display: flex;
    flex-flow: column;
    justify-content: center;
    min-width: 25%;
    text-align: center;
}

.minifield-element {
    margin-bottom: 1rem;
}

.minifield-element:last-child {
    margin-bottom: 0;
}

.minifield-element>* {
    display: block;
}

.minifield-label {
    font-family: var(--font-one);
    font-size: 1.15rem;
    color: var(--color-contrast);
}

#profile-userinfo {
    padding: 2rem;
    display: flex;
    flex-flow: column-reverse;
    justify-content: space-between;
    text-align: right;
}

#profile-username {
    font-size: 3rem;
    line-height: 3rem;
    font-family: var(--font-one);
    color: var(--color-contrast);
}

#profile-rank {
    font-family: var(--font-one);
}

#profile-subhead {
    display: flex;
    min-height: 180px;
    padding: 1rem;
    background: var(--color-contrast);
}

#profile-subhead>* {
    position: relative;
    left: .825rem;
    width: 100%;
}

#profile-quote {
    display: flex;
    justify-content: center;
}

#profile-quote>.admin-block {
    color: var(--color-one) !important;
    margin: 0 2rem;
    font-size: .825rem;
    font-style: italic;
}

#profile-quote .fas {
    color: var(--color-one) !important;
}

#profile-quote .coolquote-from {
    display: none;
}

.profile-links {
    display: flex;
    flex-flow: column;
}

.profile-links a {
    display: flex;
    align-items: center;
    color: var(--color-one) !important;
    font-size: .825rem;
    text-transform: uppercase;
}

.profile-links i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    margin-right: .5rem;
}

.profile-container {
    padding: 2rem;
    background: var(--color-one);
}

.profilefield-element {
    margin-bottom: 2rem;
}

.profilefield-element:last-child {
    margin-bottom: 0;
}

.field-head {
    display: flex;
    flex-flow: column;
    margin-bottom: 1rem;
}

.field-head h4 {
    font-size: 2.25rem;
    order: 1;
}

.field-head h6 {
    order: 0;
    color: var(--color-contrast);
    margin-left: 1rem;
    font-size: 1rem;
}

.profile-extra {
    display: flex;
    min-height: 300px;
}

#profile-extras .profile-extra-header {
    order: 1;
}

#profile-extras .profile-extra-space {
    order: 0;
}

.profile-extra-header {
    padding: 2rem;
    font-family: var(--font-one);
    font-size: 2rem;
    background: var(--color-contrast);
    color: var(--color-one);
    width: 90px;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}

.profile-extra-header span {
    display: block;
    align-self: center;
    font-size: 2.25rem;
    transform: rotate(-90deg);
}

.profile-extra-space {
    width: 100%;
}

.extrafield-head {
    margin-bottom: 1.5rem;
}

.extrafield-head h4 {
    color: var(--color-contrast);
    font-size: 1.75rem;
}

.extrafield-element {
    margin-bottom: 1.5rem;
}

.extrafield-element:last-child {
    margin-bottom: 0;
}

.extrafield-content table {
    max-width: inherit;
}

#profile-fields {
    display: flex;
    justify-content: space-between;
}

#profile-infominifields {
    max-width: 25%;
}

#profile-infominifields+#profile-infofields {
    max-width: 600px;
}

/* Ajustes responsive */
@media only screen and (max-width: 487px) {
    .forum-panel {
        min-height: 25vh;
    }

    #for-afis-nosis ul {
        max-width: 235px;
    }

    .topic-title {
        margin: 0;
    }

    .topiclist-header,
    .topic-repliesandviews {
        display: none;
    }

    .topiclist-topic {
        flex-flow: column;
    }

    .topic-inner {
        min-width: 100%;
        max-width: calc(100vw - 5.5rem) !important;
        min-height: 90px !important;
        border-right: 2px solid var(--color-contrast);
        border-bottom: none;
        padding: 1rem !important;
    }

    .topic-lastpost {
        width: 100% !important;
        font-size: 1rem !important;
        height: 2rem !important;
        padding: .5rem !important;
    }

    .topic-lastpost::after {
        content: 'Último mensaje';
        margin-left: .5rem;
    }

    .topic-draft .topic-lastpost::after {
        content: 'Examinar bosquejo';
        font-family: var(--font-one);
    }

    .topic-mp .topic-lastpost::after {
        content: 'Seleccionar mensaje';
        font-family: var(--font-one);
    }

    .topiclist-topics>li.row.is-mod .topic-lastpost::after {
        content: 'Seleccionar tema';
    }

    .topic-mp .forum-checkbox {
        width: 20px;
        height: 20px;
    }

    .topic-mp .checkbox-click {
        border: 2px solid !important;
        font-size: .825rem;
    }

    .topic-mp .topic-inner {
        flex-flow: column;
        align-items: flex-start;
    }

    .topic-mp .topic-repliesandviews,
    .topic-mp .topic-title {
        width: 100%;
    }

    .topic-mp .topic-repliesandviews {
        display: flex;
        justify-content: space-between;
    }

    .topic-mp .topic-repliesandviews span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .topic-mp .topic-repliesandviews span:first-child {
        flex: 0 0 auto;
        margin-right: .5rem;
    }

    .forumseparator-element {
        width: 100%;
    }

    .memberlist-content {
        flex-flow: column;
        align-items: flex-start;
    }

    .memberlist-info {
        padding: 0 1rem 1rem 1rem;
    }

    .memberlist-infofield {
        text-align: left;
    }

    #profile-infominifields ul {
        justify-content: flex-start;
    }

    #profile-infominifields h3,
    #profile-infominifields .minifield-element {
        text-align: left;
    }

    .field-element h4,
    .profile-extra-header span {
        font-size: 1.5rem;
    }

    .profile-extra-header {
        height: 60px;
    }

    .extrafield-head h4 {
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 768px) {

    #bloque-ultimostemas,
    #bloque-info {
        margin-top: 1.25rem;
    }

    .postlist-post {
        flex-flow: column;
    }

    body>header img {
        max-height: 150px;
    }

    #profile-head {
        justify-content: normal;
    }

    #profile-userinfo {
        flex-grow: 1;
    }

    div#profile-minifields {
        display: none;
    }

    ul#profile-minifields {
        flex-flow: row wrap;
        padding: 1rem;
    }

    ul#profile-minifields li {
        margin: 1rem;
    }

    #profile-head,
    #profile-fields,
    .profile-extra {
        flex-flow: column;
    }

    #profile-fields>* {
        max-width: initial !important;
    }

    #profile-head>*,
    #profile-fields>*,
    .profile-extra>* {
        width: 100%;
    }

    #profile-infominifields {
        position: initial;
        margin-right: 0;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    #profile-infominifields ul {
        display: flex;
        flex-flow: wrap;
        justify-content: center;
        align-items: center;
        margin: -1rem;
    }

    #profile-infominifields ul li {
        margin: 1rem;
    }

    .profile-extra-header {
        height: 90px;
    }

    .profile-extra-header span {
        transform: initial;
    }

    #profile-extras .profile-extra-header {
        order: initial;
    }

    .is-two-columns-list>li {
        width: 100%;
    }

    .profile-sticky:not(.post-buttons) {
        position: initial !important;
    }
}

@media only screen and (max-width: 1023px) {

    body>.forum-navbar {
        padding-top: .5rem;
        padding-bottom: .5rem;
    }

    #forum-body>.main-body {
        flex-flow: column-reverse;
    }

    aside#right {
        display: none;
    }

    #page-afiliates #for-afis-nosis ul:nth-child(2) {
        margin-bottom: 1.75rem;
    }

    .profile-sticky {
        top: 5rem;
    }

    .page-anchor {
        position: absolute;
        top: calc(-1rem - 40px);
    }
}