/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 8 version
*/


/* ===GLOBAL=== */

@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@300&display=swap");
@font-face {
    font-family: Loretta;
    src: url("../fonts/loretta/Loretta-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Loretta;
    src: url("../fonts/loretta/Loretta-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: Loretta;
    src: url("../fonts/loretta/Loretta-Bold.otf") format("opentype");
    font-weight: bold;
    font-style: 600;
}

:root {
    /* fonts */
    --display-font: "Loretta", serif;
    --text-font: "Karla", sans-serif;
    --mono-font: "Inconsolata", monospace;
    --xxxlarge: 70px;
    --xxlarge: 40px;
    --xxlarge-mobile: 32px;
    /* Colors */
    --gray1: #212121;
    --hover: gray;
    /* Lines */
    --main-line: 1px solid #212121;
    /* Spacings */
    --spacing-xxxl: 192px;
    --spacing-xxl: 180px;
    --spacing-xl: 120px;
    --spacing-lg: 102px;
    --spacing-md: 78px;
    --spacing-sm: 72px;
    --spacing-xs: 60px;
    --spacing-xxs: 48px;
    --spacing-xxxs: 30px;
}

.mt180 {
    margin-top: 180px;
}

.mb180 {
    margin-bottom: 180px;
}

.pt180 {
    padding-top: 180px;
}

.pt220 {
    padding-top: 220px;
}

.pb180 {
    padding-bottom: 180px;
}

.mt102 {
    margin-top: 102px;
}

.mb102 {
    margin-bottom: 102px;
}

.pt102 {
    padding-top: 102px;
}

.pb102 {
    padding-bottom: 102px;
}

@media screen and (max-width: 576px) {
    .mt180 {
        margin-top: 72px;
    }
    .mb180 {
        margin-bottom: 72px;
    }
    .pt180 {
        padding-top: 72px;
    }
    .pt220 {
        padding-top: 96px;
    }
    .pb180 {
        padding-bottom: 72px;
    }
    .mt102 {
        margin-top: 60px;
    }
    .mb102 {
        margin-bottom: 60px;
    }
    .pt102 {
        padding-top: 60px;
    }
    .pb102 {
        padding-bottom: 60px;
    }
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--text-font);
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray1);
}

h1,
h2,
h3,
h4 {
    font-family: var(--display-font);
    margin: 0;
}

h3 {
    font-size: var(--xxlarge-mobile);
    font-weight: 500;
}

@media screen and (min-width: 663px) {
    h3 {
        font-size: var(--xxlarge);
    }
}

a {
    text-decoration: none;
}


/* Buttons */

a.primary-button {
    font-size: 16px;
    padding: 8px 0;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gray1);
    -webkit-transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
    -o-transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
    display: inline-block;
    margin-right: 16px;
}

.primary-button:hover {
    color: var(--hover);
    -webkit-transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
    -o-transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}

.primary-button:hover>svg>path {
    fill: var(--hover);
    -webkit-transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
    -o-transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}

.primary-button:checked {
    color: gray;
}


/* ===HEADER=== */

.site-header {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: white;
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
    -webkit-transition: all linear 0.2s;
    -o-transition: all linear 0.2s;
    transition: all linear 0.2s;
}

@media screen and (min-width: 768px) {
    .site-header {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

#masthead-white {
    background-color: white;
}

.header-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1000;
    background-color: white;
    color: black;
}

.logo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .logo-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.large-logo img {
    height: 48px;
    width: auto;
    -webkit-transition: all linear 0.2s;
    -o-transition: all linear 0.2s;
    transition: all linear 0.2s;
    object-fit: contain;
    object-position: center center;
}

.negative {
    color: #000!important;
    background-color: white;
    -webkit-transition: all linear 0.2s;
    -o-transition: all linear 0.2s;
    transition: all linear 0.2s;
}

#site-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#primary-menu li {
    list-style: none;
}

.page-link {
    color: var(--gray1);
}

.page-link:visited {
    color: var(--gray1);
}

.page-item.disabled .page-link {
    color: rgba(222, 226, 230, 1.00);
}

#masthead-white #primary-menu li a {
    color: var(--gray1);
    font-size: 18px;
}

.left-menu-wrapper>div>ul>li {
    margin-right: 20px;
}

.left-menu-wrapper>div>ul>li>a {
    color: var(--gray1);
    font-size: 18px;
}

#primary-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

@media screen and (max-width: 1008px) {
    .left-menu-wrapper>div>ul>li {
        margin-right: 3px;
    }
    .left-menu-wrapper>div>ul>li>a {
        color: var(--gray1);
        font-size: 16px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 846px) {
    .left-menu-wrapper>div>ul>li {
        margin-right: 0;
    }
    .left-menu-wrapper>div>ul>li>a {
        color: var(--gray1);
        font-size: 14px;
    }
}

#second-menu {
    width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    #second-menu {
        display: block;
    }
}

.store-icon a i {
    color: var(--gray1);
    font-size: 24px;
}

.side-menu-left {
    width: 55px;
}

.side-menu-left:after {
    content: "";
    display: block;
    border-right: 1px solid white;
    height: 110%;
    top: -42px;
    position: relative;
    /* left: 0; */
    left: 60%;
}

.side-menu-icons {
    text-align: left;
}

.side-menu-icons-content {
    display: flex;
    flex-direction: column;
}

.side-menu-icons:after {
    content: "";
    display: block;
    border-left: 1px solid white;
    height: 110%;
    top: -288px;
    position: relative;
    right: 60%;
}

#second-menu div>ul>li.second-menu-child>a {
    font-size: 16px!important;
    font-family: var(--text-font);
}

#second-menu div>ul>li.second-menu-child:last-child {
    padding-bottom: 25px;
}


/* Pulse button */

div.pulse-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 4;
}

div.hamburger-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: fixed;
    top: 32px;
    left: 42px;
    z-index: 4;
}

@media screen and (min-width: 767px) {
    div.hamburger-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        position: fixed;
        top: 43px;
        left: 60px;
        z-index: 4;
    }
}

.hamburger-icon {
    cursor: pointer;
}

div.pulse {
    height: 15px;
    width: 15px;
    background-color: #000;
    border-radius: 50%;
    -webkit-animation: pulse 1.5s infinite;
    animation: pulse 1.5s infinite;
    margin-right: 32px;
}

div.pulse:hover {
    -webkit-animation: none;
    animation: none;
    cursor: crosshair;
}

@-webkit-keyframes pulse {
    40% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.3);
    }
    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes pulse {
    40% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.3);
    }
    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

#side-nav {
    height: 100%;
    padding-bottom: 5%;
    width: 100%;
    position: fixed!important;
    top: 0;
    right: 0;
    color: white;
    z-index: 3;
    float: right;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0.5s, opacity 0.5s;
    -o-transition: visibility 0.5s, opacity 0.5s;
    transition: visibility 0.5s, opacity 0.5s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.side-menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    overflow: auto;
    padding-bottom: 120px;
}

@media screen and (min-width: 768px) {
    .side-menu-wrapper {
        padding-top: 42px;
        padding-bottom: 62px;
    }
}

.complex-gradient:before,
.complex-gradient:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.complex-gradient:before {
    background: red;
    -webkit-box-shadow: 0 0 140px 64px red;
    box-shadow: 0 0 140px 64px red;
    z-index: 2;
    top: -100%;
    left: -72%;
    opacity: 0.8;
}

.complex-gradient:after {
    background: white;
    z-index: 3;
    bottom: -96%;
    right: -72%;
    -webkit-box-shadow: 0 0 140px 64px white;
    box-shadow: 0 0 140px 64px white;
    opacity: 1;
    border-radius: 100%;
}

#side-nav .user-login {
    width: 18px;
}

#side-nav a {
    color: var(--gray1);
}

#side-nav i {
    color: white;
}

#side-nav ul {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
}

#side-nav ul li {
    line-height: 1.8;
}

#side-nav_form-suscription>input[type=email] {
    border: none;
    border-bottom: 1px solid var(--gray1);
    background-color: transparent;
    border-radius: 0;
    width: 330px;
    text-align: center;
    font-family: var(--text-font);
    padding-top: 30px;
    color: #828282;
}

#side-nav_form-suscription>input[type=email]:focus {
    outline: none;
    border-bottom: 1px solid var(--hover);
}

#side-nav_form-suscription>button {
    color: var(--gray1);
    background-color: transparent;
    border: none;
    border-radius: 0;
}

#side-nav_form-suscription>button:hover {
    border: none;
    color: var(--hover);
}

#side-nav_form-suscription>button:hover>svg>path {
    fill: var(--hover);
}

#first-menu,
#second-menu {
    font-family: var(--display-font), serif;
    text-align: center;
}

#first-menu,
#second-menu div ul li a {
    font-size: 32px;
}

.side-menu-logo {
    width: 100%;
    border-bottom: 1px solid white;
    text-align: center;
}

.side-menu-logo img {
    padding-top: 30px;
    padding-bottom: 30px;
    max-height: 120px;
    object-fit: contain;
    object-position: center center;
}

#side-nav .first-menu {
    margin-top: 32px;
}

#side-nav .third-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#side-nav .third-menu ul li {
    padding-right: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

input[type="search"].endemico-search-field {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--gray1);
    border-radius: initial;
    color: var(--gray1);
    font-family: var(--text-font);
    text-align: center;
    max-width: 120px;
}

.search-icon {
    margin-top: 10px;
    margin-right: 5px;
}

.endemico-searchform {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}


/* ===INDEX=== */

.site-main {
    background-color: #fff;
    margin-bottom: 100vh;
}

#primary .section2 {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 120vh;
}

#primary .section2 a:hover {
    color: #fff;
}

.site-main_illustration {
    width: 100%;
    background-color: var(--gray1);
    height: 100vh;
}

.site-main_illustration img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.main-magazine {
    top: 0;
    width: 100%;
    font-size: 24px;
    text-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 120vh;
    color: black;
    padding-bottom: 25vh;
}

@media screen and (max-width: 767px) {
    .main-magazine {
        height: 70vh;
    }
}

.main-magazine h1 {
    font-size: 52px;
    max-width: 70%;
}

@media screen and (max-width: 767px) {
    .main-magazine h2 {
        font-size: 36px;
        max-width: 80%;
    }
}

.main-magazine p {
    margin-top: 30px;
}

a.main-magazine h2 a {
    font-size: 36px;
    color: black;
}

a.main-magazine:hover {
    color: black;
}

a.main-magazine:visited {
    color: black;
}

.main-post {
    top: 0;
    width: 100%;
    font-size: 24px;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 120vh;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
}

.main-post h1 {
    font-size: 52px;
    max-width: 70%;
}

@media screen and (max-width: 767px) {
    .main-post h1 {
        font-size: 36px;
        max-width: 80%;
    }
}

.main-post p {
    margin-top: 30px;
}

a.main-post h1 a {
    color: white;
}

a.main-post:hover {
    color: white;
}

a.main-post:visited {
    color: white;
}


/* Slogan */

.site-main_slogan {
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

@media screen and (min-width: 663px) {
    .site-main_slogan {
        max-width: 750px;
    }
}

.slogan_subtitle {
    font-family: var(--text-font);
    font-weight: normal;
    border-bottom: 1px solid white;
    display: inline-block;
    margin-bottom: 18px;
    color: white;
}

.slogan_text {
    font-size: 26px;
    font-family: var(--display-font);
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
    color: white;
}

@media screen and (min-width: 663px) {
    .slogan_text {
        font-size: 42px;
    }
}

.slogan_text p {
    margin: 0;
}


/* edicion actual */

.edicion-actual_image {
    max-width: 100%;
}

.edicion-actual_info h3 a {
    margin: 0;
    margin-bottom: 30px;
    font-size: 30px;
    text-align: center;
    color: var(--gray1);
}

.edicion-actual_info h3:hover>a {
    color: var(--hover);
}

@media screen and (min-width: 600px) {
    .edicion-actual_info h3 {
        text-align: left;
    }
}

.edicion-actual_info p {
    margin-top: 0;
}

@media screen and (max-width: 600px) {
    .edicion-actual_info p {
        font-size: 16px;
        text-align: center;
    }
    .edicion-actual_info h3 {
        margin: 0;
        margin-bottom: 24px;
        text-align: center;
    }
    h4.ultimas-ediciones_title {
        text-align: center;
    }
    h3.ultimas-ediciones__text {
        text-align: center;
    }
    .edicion-actual_info a.primary-button {
        margin: 0 auto;
        text-align: center;
    }
    .primary-button_wrapper {
        text-align: center;
    }
}


/* STORE INDEX */

div.store-button_wrapper {
    display: inline-flex;
}

a.button-store {
    color: var(--gray1);
    outline: var(--main-line);
    padding: 10px 12px;
    border-radius: 12px;
    margin-right: 20px;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    display: inherit;
    align-items: center;
}

a.button-store:last-child {
    margin-right: 0;
}

h2.store-title-home a {
    color: var(--gray1);
}

h2.store-title-home a:hover {
    color: #828282;
}

a.button-store:hover {
    background-color: #efefef;
}


/* Picks del editor */

#picks {
    background-color: #efefef;
    height: auto;
    color: var(--gray1);
    padding-top: 60px;
    padding-bottom: 78px;
}

#main-slogan {
    padding-top: 78px;
    padding-bottom: 78px;
    background-color: aquamarine;
}

@media screen and (min-width: 768px) {
    #main-slogan {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    #picks {
        padding-top: 168px;
        padding-bottom: 120px;
        padding-left: 50px;
        padding-right: 50px;
    }
}

#picks h3 {
    font-size: 30px;
    text-align: center;
}

#picks .picks-wrapper {
    margin: 0 10px;
}

.picks-wrapper .blog_post_content_author {
    margin-top: 18px;
    margin-bottom: 6px;
}

@media screen and (min-width: 768px) {
    #picks h3 {
        font-size: var(--xxlarge);
        text-align: left;
    }
}

#picks .content-picks_title {
    color: var(--gray1);
    font-size: 20px;
    font-weight: 400;
}

ul.picks__arrows {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 0;
    padding: 0;
}

@media screen and (min-width: 768px) {
    ul.picks__arrows {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

ul.picks__arrows li {
    cursor: pointer;
}

.pagingInfo {
    margin: 0 15px;
}

.picks-endemico-img {
    height: 219px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 1400px) {
    .picks-endemico-img {
        height: 320px;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}


/* Slider */

::-webkit-scrollbar {
}

.hs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    -webkit-overflow-scrolling: touch;
    /* margin: 0 -20px; */
    margin: 0;
}

ul.hs {
    margin: 0;
    padding: 0;
    max-width: 66%;
}

.hs__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.hs__headline {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.hs__arrows {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.hs__arrows .arrow:before {
    content: "⟶";
    display: inline-block;
    vertical-align: middle;
    color: white;
    width: 18px;
    height: 12px;
    cursor: pointer;
}

.hs__arrows .arrow.disabled:before {
    -webkit-filter: brightness(2);
    filter: brightness(2);
}

.hs__arrows .arrow.arrow-prev:before {
    content: "⟵";
    margin-right: 10px;
}


/* .hs__arrows .arrow.arrow-next:before {
    transform: rotate(-90deg);
} */

.hs__item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    /* flex-basis: calc(25% - 10px * 2 - 5px); */
    -ms-flex-preferred-size: 350px;
    flex-basis: 350px;
    margin: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hs__item:last-child:after {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 1px;
    right: calc(10px * 2 * -1);
}

.hs__item:first-child {
    margin-left: calc(10px * 2);
}

.hs__item__description {
    z-index: 1;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 10px 0;
}

.hs__item__subtitle {
    color: #aaa;
    display: block;
}

.hs__item__image__wrapper {
    position: relative;
    width: 424px;
    height: 320px;
}

.hs__item__image {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (hover: none) and (pointer: coarse) {
    .hs__wrapper .hs__arrows {
        display: none;
    }
    .hs__wrapper .hs__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(23% - 10px * 2);
        flex: 1 0 calc(23% - 10px * 2);
    }
}

@media only screen and (hover: none) and (pointer: coarse) and (max-width: 990px) {
    .hs__wrapper .hs__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(45% - 10px * 2);
        flex: 1 0 calc(45% - 10px * 2);
    }
}

.container-custom {
    max-width: 928px;
}


/* Endémico web */


/* #endemico-web {
    -webkit-box-shadow: inset 0 30px 20px -20px rgba(0,0,0,0.8);
    box-shadow: inset 0 30px 20px -20px rgba(0,0,0,0.8);
} */

h3.endemico-web_title {
    margin: 0;
    margin-bottom: 45px;
}

.blog_post {
    margin-bottom: 60px;
}

.blog_post .blog_post_category p {
    margin-bottom: 10px;
    font-family: var(--mono-font);
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
}

.blog_post_content_title {
    font-size: 18px;
    font-family: var(--display-font);
    line-height: 1.3;
    margin-bottom: 0;
    margin-top: 10px;
}

.blog_post_content_title a {
    color: var(--gray1);
}

.blog_post_content_author {
    font-family: var(--display-font);
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 14px;
    line-height: 1.3;
    font-size: 14px;
}

.blog_post_content_author a {
    color: var(--gray1);
}

.blog_post_content_date {
    margin: 0;
    color: #bdbdbd;
    font-style: italic;
    font-size: 14px;
}

.blog_post_picture img {
    width: 100%;
}


/* Agenda */

#agenda {
    padding-bottom: 120px;
    padding-top: 120px;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    #agenda {
        padding-bottom: 180px;
        padding-top: 180px;
    }
}

#agenda .agenda-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-bottom: 22px;
}

h3.agenda_title {
    margin: 0;
}

h3.agenda_title a {
    font-size: 16px;
    color: var(--gray1);
    font-family: var(--text-font);
    margin-left: 12px;
}

#agenda .home_agenda_image img {
    height: 260px;
    width: 100%;
}

#agenda .home_agenda_image img {
    -o-object-fit: contain;
    object-fit: contain;
}

#agenda p.home_agenda-date {
    margin-bottom: 6px;
}

h4.home_agenda_title {
    font-size: 24px;
    margin: 0;
    margin-top: 16px;
    line-height: 1.3;
    font-weight: 500;
}

.color-hover {
    -webkit-transition: -webkit-transform 0.25s ease-in;
    transition: -webkit-transform 0.25s ease-in;
    -o-transition: transform 0.25s ease-in;
    transition: transform 0.25s ease-in;
    transition: transform 0.25s ease-in, -webkit-transform 0.25s ease-in;
}

.color-hover:hover {
    color: gray;
    -webkit-transition: -webkit-transform 0.25s ease-in;
    transition: -webkit-transform 0.25s ease-in;
    -o-transition: transform 0.25s ease-in;
    transition: transform 0.25s ease-in;
    transition: transform 0.25s ease-in, -webkit-transform 0.25s ease-in;
}

.underline-hover {
    display: inline-block;
    position: relative;
}

.underline-hover:after {
    content: '';
    position: absolute;
    width: 100%;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--gray1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: -webkit-transform 0.25s ease-out;
    transition: -webkit-transform 0.25s ease-out;
    -o-transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.underline-hover:hover:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}

h4.home_agenda_title a {
    color: var(--gray1);
    font-size: 20px;
    font-weight: 400;
}

h4.home_agenda_title a:after {
    width: 100%;
    position: absolute;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

#agenda p.home_agenda_date {
    margin-bottom: 10px;
}


/* podcast */

#podcast {
    background-color: #efefef;
}


/* categories boxes */

.product-categories.product-categories-filter {
    text-align: center;
    padding: 0;
    margin-left: 0;
}

.product-categories.product-categories-filter li {
    list-style: none;
    display: inline-block;
    padding: 5px;
}

.product-categories.product-categories-filter li .btn-product-category {
    display: block;
    border: 1px solid black;
    padding: 10px 20px;
    text-transform: uppercase;
    background-color: white;
    color: black;
    font-weight: 300;
    font-family: var(--mono-font);
}

.product-categories.product-categories-filter li .btn-product-category:hover {
    background-color: black;
    color: white;
}

.product-categories.product-categories-filter li .btn-product-category.active,
.product-categories.product-categories-filter li .btn-product-category.active:hover {
    background-color: black;
    color: white;
}


/* button-cart */

.button-cart {
    display: inline-block;
    margin: 0 20px;
    width: 3em;
}

.button-cart a {
    display: flex;
    align-items: center;
    color: black;
    font-size: 1em;
    font-weight: 200;
}

.button-cart i {
    display: inline-block !important;
    vertical-align: middle;
}


/* product-cart-min */

.product-cart-min {}

.product-cart-min .product-name-min {
    font-weight: 600 !important;
    font-size: 1.1em;
}

.product-cart-min .product-name-min a {
    color: black !important;
}

.product-cart-min .product-category {
    display: block;
    margin-bottom: 10px;
    font-weight: 300;
    font-size: 0.9em;
}

.product-cart-min .attachment-woocommerce_thumbnail {
    width: 80px !important;
    height: 80px !important;
}


/* endemico-shop-table */

#endemico-shop-table {
    border: 1px solid white;
    border-radius: 0px;
}

#endemico-shop-table .cart_item>td {
    border: none;
}

#endemico-shop-table .actions {
    border: none;
}


/* coupon */

#endemico-cart-actions {
    padding: 30px 0;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

#endemico-cart-actions #coupon_code {
    width: 180px;
    height: 46px;
    padding: 12px 30px;
    border-radius: 0px;
}

#endemico-cart-actions button.button {
    padding: 15px 30px;
    background-color: black;
    color: white;
    text-transform: none;
    font-weight: 200;
    border-radius: 0px;
}


/* endemico-cart-totals */

#endemico-cart-totals {
    width: 100%;
}

#endemico-cart-totals .shop_table {
    border: none;
    border-radius: 0px;
}

#endemico-cart-totals .shop_table td {
    text-align: right;
}

#endemico-cart-totals .wc-proceed-to-checkout {
    text-align: right;
}

#endemico-cart-totals .button {
    display: inline-block;
    width: auto;
    text-align: right;
    padding: 15px 30px;
    background-color: black;
    color: white;
    text-transform: none;
    font-weight: 200;
    font-size: 16px;
    border-radius: 0px;
}


/* woocommerce-info */

.woocommerce-info {
    border-top-color: black !important;
}

.woocommerce-info::before {
    color: black !important;
}

.woocommerce-info a {
    color: black !important;
    font-weight: 600;
}


/* woocommerce */

.woocommerce button.button,
.woocommerce a.button {
    display: inline-block;
    width: auto;
    text-align: right;
    padding: 15px 30px;
    background-color: black;
    color: white;
    text-transform: none;
    font-weight: 200;
    font-size: 16px;
    border-radius: 0px;
}

.woocommerce-loop-product__title,
.woocommerce-Price-amount {
    font-family: var(--text-font);
    color: var(--gray1);
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

.product-category-single a {
    color: var(--gray1);
    font-style: italic;
}

.product-name-single {
    font-family: var(--text-font);
    font-size: 24px;
}

button.single_add_to_cart_button,
a.single_add_to_cart_button {
    color: var(--gray1)!important;
    background-color: transparent!important;
    font-family: var(--mono-font)!important;
    border: var(--main-line)!important;
    margin-top: 15px;
}

button.single_add_to_cart_button_digital,
a.single_add_to_cart_button_digital {
	color: white !important;
	background-color: black !important;
	font-family: var(--mono-font)!important;
    border: var(--main-line)!important;
    margin-top: 15px;
}
.woocommerce-Price-amount {
    font-weight: 300;
    margin-bottom: 24px;
}

.breadcrumb-item a {
    color: var(--gray1);
}


/* endemico-checkout */

#endemico-checkout {}

#endemico-checkout input[type="text"],
#endemico-checkout input[type="email"],
#endemico-checkout input[type="tel"] {
    width: 100%;
    height: 46px;
    padding: 12px 30px;
    border-radius: 0px;
}

#endemico-checkout .select2-selection {
    width: 100%;
    height: 46px;
    padding: 12px 30px;
    border-radius: 0px;
}

#endemico-checkout textarea {
    width: 100%;
    height: 120px;
    padding: 12px 30px;
    border-radius: 0px;
    resize: none;
}

#endemico-checkout .button {
    display: inline-block;
    width: auto;
    text-align: right;
    padding: 15px 30px;
    background-color: black;
    color: white;
    text-transform: none;
    font-weight: 200;
    font-size: 16px;
    border-radius: 0px;
}

#endemico-checkout h3 {
    font-family: "Karla", sans-serif;
    font-size: 22px;
    font-weight: 600;
}

#endemico-checkout .shop_table {
    border: none;
    border-radius: 0px;
}

#endemico-checkout .shop_table td {
    text-align: right;
}

#endemico-checkout .wc-proceed-to-checkout {
    text-align: right;
}

#endemico-checkout #payment {
    background: white;
    border: none;
    border-radius: 0px;
    margin-bottom: 60px;
}


/*--------------------------------------------------------------
# Últimas ediciones
--------------------------------------------------------------*/

#ultimas-ediciones .ultimas-ediciones_title a {
    color: var(--gray1);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.post,
.page {
    margin: 0;
}

#footer-main {
    background-color: var(--gray1);
    color: #fff;
    margin: 0;
    font-size: 18px;
    min-height: 90vh;
    width: 100vw;
    position: fixed;
    bottom: 0;
    z-index: -1;
}

#footer-main a {
    color: #fff;
    padding: 0 10px;
}

#footer-main .footer-main_isologo {
    max-width: 120px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
}

#footer-main input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    outline: none;
    width: 80%;
}

#mc_embed_signup {
    width: auto!important;
}

#mc_embed_signup .mc-field-group input {
    width: 300px!important;
}

#mc_embed_signup form {
    display: flex!important;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
    align-items: center;
    text-align: center!important;
    padding: 10px 0 10px 0!important;
}

#mc-embedded-subscribe {
    border: 1px solid white!important;
    background-color: transparent!important;
}

#mc-embedded-subscribe:hover {
    border: 1px solid white!important;
    background-color: white!important;
    color: var(--gray1)!important;
}

#mce-EMAIL {
    border: none!important;
    border-bottom: 1px solid white!important;
}

#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
    border-bottom: 2px solid #e85c41;
}


/* Parallax */

.block {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    min-height: 100vh;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

.sticky-container {
    position: sticky;
    position: -webkit-sticky;
    top: 40vh;
}

.white-bg {
    background-color: white;
}


/* Equipo */

h2.main_title {
    font-size: var(--xxxlarge);
}

@media screen and (max-width: 576px) {
    h2.main_title {
    font-size: var(--xxlarge);
    padding-top: 20%;
}
}


/*--------------------------------------------------------------
# Single
--------------------------------------------------------------*/

#single-post .main-image img {
    height: 100vh;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#single-post .single-post_category a {
    list-style-type: none;
    font-family: var(--mono-font);
    font-size: 24px;
    margin-top: 102px;
    margin-bottom: 102px;
    display: block;
}

ul.post-categories {
    margin: 0;
    padding: 0;
}

ul.post-categories a {
    color: var(--gray1);
}

#single-post .post-title,
#single-post .post-title-agenda {
    font-size: 24px;
    text-align: center;
    margin-bottom: 36px;
}

#single-post .post-title-agenda {
    margin-top: 36px;
}

@media screen and (min-width: 768px) {
    #single-post .post-title,
    #single-post .post-title-agenda {
        font-size: 72px;
        text-align: center;
        margin-bottom: 102px;
    }
    #single-post .post-title-agenda {
        margin-top: 102px;
    }
}

#single-post .entry-meta {
    font-size: 20px;
    font-family: var(--mono-font);
}

#single-post .entry-meta span {
    font-weight: 600;
}

#single-post .entry-content_excerpt {
    text-align: center;
    margin-bottom: 100px;
    font-size: 18px;
    line-height: 1.4;
}

@media screen and (min-width: 768px) {
    #single-post .entry-content_excerpt {
        text-align: center;
        margin-bottom: 100px;
        font-size: 24px;
        line-height: 1.6;
    }
}

#single-post .entry-content_main p {
    font-size: 18px;
    line-height: 1.6;
    padding-bottom: 16px;
}

#single-post .full-width-img {
    width: 100vw;
}

#single-post figcaption {
    text-align: center;
    font-family: var(--mono-font);
    line-height: 1.4;
    margin-top: 12px!important;
    margin-bottom: 24px!important;
}


/* #single-post .entry-content_main h1, #single-post .entry-content_main h2, #single-post .entry-content_main h3, #single-post .entry-content_main h4, #single-post .entry-content_main h5, #single-post .entry-content_main h6, #single-post .entry-content_main p, #single-post .entry-content_main figcaption, #single-post .entry-content_main blockquote, #single-post .entry-content_main .wp-block-quote {
    max-width: 300px;
    margin: auto;
} */


/* @media screen and (min-width: 576px) {
    #single-post .entry-content_main h1, #single-post .entry-content_main h2, #single-post .entry-content_main h3, #single-post .entry-content_main h4, #single-post .entry-content_main h5, #single-post .entry-content_main h6, #single-post .entry-content_main p, #single-post .entry-content_main figcaption, #single-post .entry-content_main blockquote, #single-post .entry-content_main .wp-block-quote {
        max-width: 450px;
        margin: auto;
    }
}

@media screen and (min-width: 768px) {
    #single-post .entry-content_main h1, #single-post .entry-content_main h2, #single-post .entry-content_main h3, #single-post .entry-content_main h4, #single-post .entry-content_main h5, #single-post .entry-content_main h6, #single-post .entry-content_main p, #single-post .entry-content_main figcaption, #single-post .entry-content_main blockquote, #single-post .entry-content_main .wp-block-quote {
        max-width: 600px;
        margin: auto;
    }
}

@media screen and (min-width: 992px) {
    #single-post .entry-content_main h1, #single-post .entry-content_main h2, #single-post .entry-content_main h3, #single-post .entry-content_main h4, #single-post .entry-content_main h5, #single-post .entry-content_main h6, #single-post .entry-content_main p, #single-post .entry-content_main figcaption, #single-post .entry-content_main blockquote, #single-post .entry-content_main .wp-block-quote {
        max-width: 700px;
        margin: auto;
    }
} */

#single-post .entry-content_main img,
#single-post .entry-content_main figure {
    margin: auto;
}

.ancho-completo {
    width: 100%;
}

#single-post .entry-content_main blockquote p {
    font-family: var(--display-font);
    font-weight: 400;
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.4;
}

@media screen and (min-width: 768px) {
    #single-post .entry-content_main blockquote p {
        font-family: var(--display-font);
        font-size: 36px;
        margin-bottom: 20px;
        padding-top: 18px;
    }
}

#single-post .entry-content_main h2,
#single-post .entry-content_main h3,
#single-post .entry-content_main h4,
#single-post .entry-content_main h5,
#single-post .entry-content_main h6 {
    margin-bottom: 20px;
}

#single-post .wp-block-quote {
    border-left: 0;
}

#single-post .wp-block-quote p {
    font-size: 26px;
    font-family: var(--display-font);
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.2;
}

.testimonial-text {
    font-size: 40px;
    color: black;
}


/*--------------------------------------------------------------
# Agenda archive
--------------------------------------------------------------*/

#agenda-archive .agenda_image {
    max-width: 100%;
}

#agenda-archive .agenda_title {
    font-family: var(--display-font);
    color: var(--gray1);
}

#agenda-archive .agenda_title:hover {
    color: red;
}

#agenda-archive .agenda_category {
    font-family: var(--mono-font);
    color: var(--gray1);
}

@media screen and (min-width: 600px) {
    #agenda-archive .agenda_image {
        max-width: 100%;
    }
}

.agenda_image_single img {
    width: 100%;
}


/*--------------------------------------------------------------
# Marquee
--------------------------------------------------------------*/

.ticker-wrap {
    white-space: nowrap;
    overflow: hidden;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.ticker-wrap .ticker {
    opacity: 0;
    display: inline-block;
    white-space: nowrap;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.ticker-wrap .ticker__item {
    display: inline-block;
    padding: 0 1rem;
    color: #222222;
}

.ticker-wrap .ticker__item::after {
    content: '|';
}

.ticker_item_text {
    text-decoration: none;
    text-transform: none;
    letter-spacing: 1px;
    font-family: var(--mono-font);
}

a.ticker_item_text {
    color: #fff;
}

.ticker-wrap .ticker_item_active {
    color: #fff;
}

.banner-marquee {
    background-color: var(--gray1);
    height: 100px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.asdf {
    -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.banner-marquee p {
    margin: 0;
    font-family: var(--mono-font);
}

.banner .g-single img {
    width: 100% !important;
    height: auto;
}


/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# woocommerce-MyAccount-navigation
--------------------------------------------------------------*/

.woocommerce-MyAccount-navigation {}

.woocommerce-MyAccount-navigation ul {
    padding: 0;
    border: 1px solid #555555;
}

.woocommerce-MyAccount-navigation ul>li {
    list-style: none;
    border-bottom: 1px solid #555555;
    padding: 10px 15px;
}

.woocommerce-MyAccount-navigation ul>li:last-child {
    border: none;
}

.woocommerce-MyAccount-navigation ul>li.is-active {
    background-color: black;
    color: white;
}

.woocommerce-MyAccount-navigation ul>li a {
    color: #555555;
}

.woocommerce-MyAccount-navigation ul>li.is-active a {
    color: white;
}


/*--------------------------------------------------------------
# Revista
--------------------------------------------------------------*/

#revista .main_title,
#equipo .main_title {
    margin: 0;
    font-weight: 400;
    font-size: 40px;
    text-align: center;
}

#revista .revista_description,
#equipo .equipo_description {
    text-align: center;
}

#revista .revista_description p,
#equipo .equipo_description p {
    margin: 0;
}

#revista .description-wrapper,
#equipo .description-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 15%;
}

#revista .edicion-actual_info {
    text-align: center;
}

#revista .title-container,
#equipo .title-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 577px) {
    ¡ #revista .description-wrapper,
    #equipo .description-wrapper {
        padding-top: 0;
    }
}

@media screen and (min-width: 660px) {
    #revista .main_title,
    #equipo .main_title {
        font-size: 72px;
        text-align: left;
        font-weight: 500;
    }
    #revista .revista_description,
    #equipo .equipo_description {
        text-align: left;
        font-size: 24px;
    }
    #revista .edicion-actual_info {
        text-align: left;
    }
    #revista .description-wrapper,
    #equipo .description-wrapper {
        padding-top: 0;
    }
}


/*--------------------------------------------------------------
# Productos
--------------------------------------------------------------*/

.product .woocommerce-LoopProduct-link {
    display: block !important;
}

.product .add_to_cart_button {
    width: auto;
}

.wp-block-image img {
    width: 100%;
}


/*--------------------------------------------------------------
# Page acerca
--------------------------------------------------------------*/

@media screen and (max-width: 576px) {
    .page-main-text {
        padding-top: 42px;
    }
}

.wp-block-quote cite {
    font-size: 1em;
    display: block;
    text-align: right;
}


/*--------------------------------------------------------------
# Visuales
--------------------------------------------------------------*/


/* visuals boxes */

.visual-categories.visual-categories-filter {
    text-align: center;
    padding: 0;
    margin-left: 0;
}

.visual-categories.visual-categories-filter li {
    list-style: none;
    display: inline-block;
    padding: 5px;
}

.visual-categories.visual-categories-filter li .btn-visual-category {
    display: block;
    border: 1px solid black;
    padding: 10px 20px;
    text-transform: uppercase;
    background-color: transparent;
    color: black;
    font-weight: 300;
    font-family: var(--mono-font);
}

.visual-categories.visual-categories-filter li .btn-visual-category:hover {
    background-color: black;
    color: white;
}

.visual-categories.visual-categories-filter li .btn-visual-category.active,
.visual-categories.visual-categories-filter li .btn-visual-category.active:hover {
    background-color: black;
    color: white;
}

#single-visuales .post-title-visuales {
    text-align: center;
}

@media screen and (min-width: 768px) {
    #single-visuales .post-title-visuales {
        margin-top: 68px;
        margin-bottom: 40px;
        font-size: 54px;
    }
}

.visuales-wrapper {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20%;
}

.visuales_post_content_date {
    text-align: center;
    padding-bottom: 15%;
}

.visuales_post_content_author {
	text-align: center;
}

@media screen and (max-width: 768px) {
    .visuales-wrapper {
        column-gap: 20px;
        row-gap: 20px;
    }
}

@media screen and (max-width: 400px) {
    .visuales-wrapper {
        column-gap: 20px;
        grid-template-columns: 1fr;
    }
    .visuales-wrapper>.visuales_image:nth-of-type(even) {
        grid-column: 1;
    }
    .visuales-wrapper>.visuales_image {
        padding-top: 20px;
    }
}

@media screen and (min-width: 768px) {
    .visuales-wrapper>.visuales_image:nth-of-type(even) {
        grid-column: 2;
        padding-top: 55%;
    }
}


/* .visuales-wrapper>.visuales_image:nth-of-type(even) {
    grid-column: 2;
    padding-top: 55%;
} */

ul.visual__arrows {
    justify-content: center;
}

.visuales-wrapper_single {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width: 636px) {
    .visuales-wrapper_single {
        grid-template-columns: 1fr;
    }
    .visuales-wrapper_single>div {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }
}

.category_visuales-single {
    padding-top: calc(88px + 10%);
    font-family: var(--mono-font);
    font-size: 18px;
    text-align: center;
}

.visuales_image-single {
    margin-bottom: 20px;
}

.category_visuales-single a {
	color: var(--gray1);
}

.visuales-wrapper_single>.visuales_image-single>div>img {
    min-width: 100%
}

#single-visuales>article>div.visuales-wrapper_single>div>img {
    min-width: 100%
}

#artivismo>article>div.visuales-wrapper.mb102>div>a>img {
    min-width: 100%
}

.arrows_wrapper {
    padding-top: 120px;
    display: flex;
    justify-content: space-between;
    font-family: var(--mono-font);
    text-transform: uppercase;
    color: var(--gray1);
}

.arrows_wrapper>div>a {
    color: var(--gray1);
    letter-spacing: 3px;
    font-size: 18;
}

.arrows_wrapper>div>a:hover {
    color: var(--hover);
}

ul.col-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: auto;
    max-width: 786;
}

div.col-categories-wrapper {
    max-width: 768px;
    margin: 0 auto;
}

ul.col-categories li a {
    letter-spacing: 3px;
}

#single-visuales>article>div>div>div.visuales_image-single>img {
    min-width: 100%;
    max-width: 100%;
}

#artivismo>div>div.description-wrapper {
    padding-bottom: 50px;
    align-items: center;
}

.visuales-description {
    align-items: center;
}

.visuales-description>div>p {
    margin-bottom: 0;
}

.side-menu-columns {
    display: grid;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .side-menu-columns {
        padding-bottom: 30%;
    }
}

@media screen and (min-width: 768px) {
    .side-menu-columns {
        grid-template-columns: minmax(100px, 140px) [line1] auto [line2] minmax(100px, 140px) [end];
    }
}

.side-menu-columns_a {
    border-right: 1px solid white;
}

.side-menu-columns_e {
    border-left: 1px solid white;
}

.side-menu-columns_e .side-menu-icons-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 90%;
}

.side-menu-columns_bcd {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 30px;
    overflow: scroll;
    text-align: center;
}

@media screen and (min-width: 880px) {
    .side-menu-columns_bcd {
        display: grid;
        grid-template-columns: repeat(3, auto);
        grid-gap: 40px;
        padding-top: 10%;
        text-align: left;
    }
}

.side-menu-columns_bcd>div {
    justify-self: center;
}

#side-nav>div.side-menu-columns>div>div>ul>li {
    font-family: var(--display-font);
    font-size: 32px;
}

#side-nav>div.side-menu-columns>div>div>ul>li.second-menu-child {
    font-family: var(--text-font);
    font-size: 18px;
}

.pagingInfoVisual {
    padding: 0 40px;
}