/*  VARIÁVEIS
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
:root {
    
    --color-blue-1: #00f2fe;
    --color-blue-2: #127497;
    --color-blue-3: #075178;
    /*--color-blue-4: #2f3b51;*/
    --color-blue-4: #003d60;
    --color-blue-5: #2c364c;
    --color-blue-6: #242e41;
    --color-blue-7: #20293b;
    --color-blue-8: #022336;
    --color-orange-1: #fd6827;
    --color-white: #ffffff;
    --color-black: #000000;

    --color-main: #fd6827;
    --color-main-dark: #fd6827;    
    --color-grey-1: #ecf0f1; /*Utilizado apenas para backgrounds claros (primeiro nível acima do branco)*/    
    --color-grey-2: #bbc8d4; /*Utilizado em fontes, especialmente parágrafos com background em branco*/
    --color-grey-3: #94a2af; /*Utilizado em fontes, especialmente títulos com background em preto*/
    --color-grey-4: #65717d; /*Utilizado apenas para backgrounds escuros (último nível abaixo do preto)*/
    --color-grey-5: #434f5a;
    --spacer: 20px;
    --font-1: 'Fjalla One', sans-serif;
    --font-2: 'Noto Sans', sans-serif;
}

@media only screen and (min-width: 1280px) {
    :root {
        --spacer: 30px;
    }    
}

/*  CORES
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */

.bg-blue-1 {background-color: var(--color-blue-1)}
.bg-blue-2 {background-color: var(--color-blue-2)}
.bg-blue-3 {background-color: var(--color-blue-3)}
.bg-blue-4 {background-color: var(--color-blue-4)}
.bg-blue-5 {background-color: var(--color-blue-5)}
.bg-blue-6 {background-color: var(--color-blue-6)}
.bg-blue-7 {background-color: var(--color-blue-7)}
.bg-blue-8 {background-color: var(--color-blue-8)}

.color-blue-1 {color: var(--color-blue-1)}
.color-blue-2 {color: var(--color-blue-2)}
.color-blue-3 {color: var(--color-blue-3)}
.color-blue-4 {color: var(--color-blue-4)}
.color-blue-5 {color: var(--color-blue-5)}
.color-blue-6 {color: var(--color-blue-6)}
.color-blue-7 {color: var(--color-blue-7)}
.color-blue-8 {color: var(--color-blue-8)}


.color-main {color: var(--color-main)}
.color-black {color: var(--color-black)}
.color-white {color: var(--color-white)}
.color-grey-1 {color: var(--color-grey-1)}
.color-grey-2 {color: var(--color-grey-2)}
.color-grey-3 {color: var(--color-grey-3)}
.color-grey-4 {color: var(--color-grey-4)}
.color-grey-5 {color: var(--color-grey-5)}
.bg-main {background-color: var(--color-main)}
.bg-black {background-color: var(--color-black)}
.bg-white {background-color: var(--color-white)}
.bg-grey-1 {background-color: var(--color-grey-1)}
.bg-grey-2 {background-color: var(--color-grey-2)}
.bg-grey-3 {background-color: var(--color-grey-3)}
.bg-grey-4 {background-color: var(--color-grey-4)} 
.bg-logo {
    background-image: url(../images/aloha-logotipo.png);
    background-position: center;
    background-repeat: no-repeat;
}   

/*  FONTS
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
body {
    font-family: 'Noto Sans', sans-serif;
    color: var(--color-grey-2);
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
}

h1, h2, h3, h4, h5, .title, .fjalla, blockquote {
    font-family: var(--font-1);
    font-weight: normal;
}

strong, b {
    font-weight: 700;
}

em, i {
    font-style: italic;
}

h1, h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 17px;
}

h5 {
    font-size: 14px;
}

p {
    line-height: 1.25em;
}

@media only screen and (min-width: 1024px) {
    h1, h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 16px;
    }    
}


/*  LAYOUT CONTAINERS
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.w-1-1,
section,
header,
footer {
    float: left;
    clear: both;
    width: 100%;
    height: auto;
}

.container {
    width: 100%;    
    max-width: 1920px;
    margin: auto;
}

.center-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding-left: calc( var(--spacer) / 2 );
    padding-right: calc( var(--spacer) / 2 );
} 

.v-spacer {
    width: 100%;
    height: 0;
    padding-top: var(--spacer);
    display: block;
    float: left;
    clear: both;
}

.p-top {
    padding-top: var(--spacer);
}

.p-bottom {
    padding-bottom: var(--spacer);
}

.m-top {
    margin-top: var(--spacer);
}

.m-bottom {
    margin-bottom: var(--spacer);
}

/*  LAYOUT DEFAULTS
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
nav,
nav > ul > li {
    display: inline-block;
}

/*FORMS*/
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    border: none;
    background-color: var(--color-white);
    font-family: inherit;
    padding: 0 calc( var(--spacer) / 2 );
    width: 100%;
    color: var(--color-grey-4);    
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    background-color: var(--color-white);
    -webkit-text-fill-color: var(--color-grey-2);
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

::placeholder {
    color: var(--color-grey-4);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--color-grey-4);
}

::-ms-input-placeholder {
    color: var(--color-grey-4);
}

textarea {
    line-height: 1.45em;
    height: 8em;
}

form label {
    display: none;
}

form > div {
    margin-bottom: 10px;
}

form > div:last-of-type {
    margin-bottom: 0;
}

.checkbox {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-right: var(--spacer);
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.checkbox:last-of-type {
    margin-right: 0;
}

.checkbox span {
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 5px;
    background-color: transparent;
    margin-right: 10px;
    margin-bottom: 7px;
    box-sizing: border-box;
    border: 2px solid white;
}

.checkbox.checked span:after {
    content: "";
    display: block;
    width: 8px;
    height: 22px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    position: absolute;
    transform: rotate(45deg);
    top: -9px;
    left: 9px;
    box-shadow: 3px 3px 3px rgba(0,0,0,.3);
}

.radio {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-right: var(--spacer);
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.radio:last-of-type {
    margin-right: 0;
}

.radio span {
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 10px;
    background-color: transparent;
    margin-right: 10px;
    margin-bottom: 7px;
    box-sizing: border-box;
    border: 2px solid var(--color-white);
}

.radio.checked span:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--color-white);
    position: absolute;
    top: 4px;
    left: 4px;
    box-shadow: 3px 3px 3px rgba(0,0,0,.3);
    border-radius: 10px;
}

form[role="search"] {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--color-white);
}

form[role="search"] label {
    display: block;
}

form[role="search"] .screen-reader-text {
    display: none;
}

form[role="search"] input[type="search"],
form[role="search"] input[type="text"] {
    line-height: 24px;
    width: calc( 100% - 24px );
    background-color: transparent;
    padding: 0;
    color: var(--color-white);
}

form[role="search"] input[type="submit"] {
    position: absolute;
    right: 0;
    /*top: 8px;*/
    bottom: 8px;
    width: 24px;
    height: 24px;
    background-color: transparent;
    background-image: url(../images/icons-sprite.png);
    background-repeat: no-repeat;
    background-size: 360px 48px;
    background-position: 0px 0px;
}

form[role="search"] input[type="submit"]:hover {
    background-position: 0px -24px;
}

/*BUTTONS*/
a.button,
form:not([role="search"]) input[type="submit"],
input[type="reset"] {
    display: flex;
    justify-content: center;   
    width: 100%;
    min-width: 200px;
    line-height: 45px;
    height: 45px;
    color: var(--color-blue-3);
    font-family: var(--font-1);
    font-weight: normal;
    font-size: 22px;
    text-transform: uppercase;
    background-color: var(--color-blue-1);
    padding: 0 var(--spacer);
    box-sizing: border-box;
    white-space: nowrap;
    margin: auto;
}

a.button.button-bordered,
form:not([role="search"]) input[type="submit"].button-bordered {
    border: 2px solid var(--color-white);
    background-color: transparent;
}

a.button.button-black,
form:not([role="search"]) input[type="submit"].button-black {
    background-color: var(--color-black);
}

a.button.button-black.button-bordered ,
form:not([role="search"]) input[type="submit"].button-black.button-bordered  {
    color: var(--color-black);
    border: 2px solid var(--color-black);
    background-color: transparent;
}

a.button.button-wide,
form:not([role="search"]) input[type="submit"].button-wide,
input[type="reset"].button-wide {
    width: 100%;
    max-width: 100%;
}

@media only screen and (min-width: 400px) {
    a.button,
    form:not([role="search"]) input[type="submit"],
    input[type="reset"] {
        max-width: 240px;
    }
}

/*BANNERS > LABEL PUBLICIDADE*/
.banner-box {
    display: flex;
    justify-content: center;
}

.banner-box .swiper-slide > a {
    display: table;
    margin: auto;
}

.mini-font {
    color: var(--color-grey-2);
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-box span.publicidade {
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1;
    
    line-height: 10px;
    padding: 0 0 2px 0;
    transform: translateY(-100%);
}

/*CATEGORY LINKS*/
.category-links a {
    display: inline-block;
    text-transform: uppercase;
    color: var(--color-blue-1);
    border: 2px solid var(--color-blue-1);
    margin-right: 5px;
    margin-top: 7px;
    font-weight: 700;
    font-size: 12px;
    padding: 3px 7px;
    background-color: transparent;
    transition: background-color .25s ease-in-out, color .25s ease-in-out, border-color .25s ease-in-out;
    z-index: 1;
}

.category-links.mini a {
    border: none;
    margin-right: 1px;
    font-size: 9px;
    padding: 3px 5px;
    background-color: var(--color-blue-1);
    color: var(--color-blue-7);
}

.category-links a:last-child {
    margin-right: 0;
}

.category-links a:hover {
    background-color: var(--color-blue-1);
    color: var(--color-blue-7);    
}

/*  HEADER
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.menu-defaults {
    font-family: var(--font-1);
    text-transform: uppercase;
    font-size: 15px;   
}

.menu-defaults li {
    margin-right: calc( var(--spacer) * 0.5 );
}

.menu-defaults li:last-of-type {
    margin-right: 0;
}

.top-logo > a{
    display: flex;
}

.top-logo > a > img:nth-child(1) {
    margin-right: 4px;
}

.header-bar-0 .center-wrapper,
.header-bar-2 .center-wrapper,
.fixed-menu .center-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.header-bar-2 .center-wrapper {
    min-height: calc( var(--spacer) / 2 );
}

.header-bar-2.no-ad .center-wrapper:before {
    content: "";
    display: block;
    width: calc( 100% - var(--spacer) );
    height: 2px;
    background-color: var(--color-white);
    position: absolute;
    top: -2px;
    left: calc( var(--spacer) / 2 );
}

/*MENU STICK*/
.fixed-menu {
    position: fixed;
    z-index: 3;
    top: -60px;
    transition: all .3s ease-in-out;
    border-bottom: 2px solid var(--color-blue-1);
}

.stick-menu .fixed-menu {
    top: 0px;    
}

/*MENU PRINCIPAL*/
.menu-principal,
.menu-social,
.menu-categorias {
    display: none;
}

/*MENU ITEM ICONS*/
.icon-24x24,
.icon-24x24 > a,
.icon-24x24:before,
.icon-24x24:after {
    display: block;
    width: 24px;
    height: 24px;
    overflow: hidden;    
}

.icon-24x24 {
    float: left;
}

.icon-24x24 > a {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.icon-24x24:before,
.icon-24x24:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/icons-sprite.png);
    background-repeat: no-repeat;
    background-size: 360px 48px;
    /*transition: top .2s 0s ease-in-out;*/   
}

.icon-24x24.loupe:before {background-position: 0 0;}
.icon-24x24.angle-down:before {background-position: -24px 0;}
.icon-24x24.angle-up:before {background-position: -48px 0;}
.icon-24x24.angle-right:before {background-position: -72px 0;}
.icon-24x24.angle-left:before {background-position: -96px 0;}
.icon-24x24.clock:before {background-position: -120px -24px;}
.icon-24x24.calendar:before {background-position: -144px -24px;}
.icon-24x24.instagram:before {background-position: -168px 0;}
.icon-24x24.facebook:before {background-position: -192px 0;}
.icon-24x24.youtube:before {background-position: -216px 0;}
.icon-24x24.twitter:before {background-position: -240px 0;}
.icon-24x24.whatsapp:before {background-position: -264px 0;}
.icon-24x24.mail:before {background-position: -288px 0;}
.icon-24x24.spotify:before {background-position: -312px 0;}
.icon-24x24.linkedin:before {background-position: -336px 0;}

.icon-24x24.loupe:after {background-position: 0 -24px;}
.icon-24x24.angle-down:after {background-position: -24px -24px;}
.icon-24x24.angle-up:after {background-position: -48px -24px;}
.icon-24x24.angle-right:after {background-position: -72px -24px;}
.icon-24x24.angle-left:after {background-position: -96px -24px;}
.icon-24x24.clock:after {background-position: -120px -24px;}
.icon-24x24.calendar:after {background-position: -144px -24px;}
.icon-24x24.instagram:after {background-position: -168px -24px;}
.icon-24x24.facebook:after {background-position: -192px -24px;}
.icon-24x24.youtube:after {background-position: -216px -24px;}
.icon-24x24.twitter:after {background-position: -240px -24px;}
.icon-24x24.whatsapp:after {background-position: -264px -24px;}
.icon-24x24.mail:after {background-position: -288px -24px;}
.icon-24x24.spotify:after {background-position: -312px -24px;}
.icon-24x24.linkedin:after {background-position: -336px -24px;}

.icon-24x24:after {
    top: 24px;
}

.icon-24x24.hover:hover:before {
    top: -24px;
}

.icon-24x24.hover:hover:after {
    top: 0px;
}

/* MENU OUTROS */
.menu-outros {
    display: flex;
}

.menu-social li {
    margin-right: 3px;
}

.loupe {
    background-color: transparent;
}

/*MENU COM SUBNÍVEIS*/
.current-menu-item,
.nav li:hover > a {
    color: var(--color-blue-1);    
}

.menu-defaults .menu-item-has-children > a:after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 13px;
    background-image: url(../images/icons-sprite.png);
    background-repeat: no-repeat;
    background-size: 360px 48px;
    background-position: -25px -7px;
}

.menu-defaults .menu-item-has-children:hover > a:after {
    background-position: -25px -31px;
}

.nav a {
    display:block;
    position: relative;
    padding-top: 12px;
    padding-bottom: 8px;
}

.nav{  
    vertical-align: top; 
    display: inline-block;
}

.nav li {
    position: relative;
}

.nav > li { 
    float: left;
    border-bottom: 1px solid transparent;
}

.nav > li:before { 
    content: "";
    display: block;
    position: absolute;
    top: calc( 100% + 1px );
    left: 50%;
    height: 3px;
    width: 0%;
    transition: all .25s 0s ease-out; 
}

.nav > li:hover:before {
    left: 0%;
    width: 100%;
    transition: all .25s 0s ease-in; 
}   

.nav > li:last-child { 
    margin-right: 0;
} 

.nav > li > ul > li {
    margin: 0 var(--spacer);
}

/*
.nav li a:first-child:nth-last-child(2):before { 
    content: ""; 
    position: absolute; 
    height: 0; 
    width: 0; 
    border: 5px solid transparent; 
    top: 50% ;
    right: 5px;  
}*/

/* SUBMENU POSITIONING*/
.nav ul {
    background-color: var(--color-blue-3);
    padding-top: calc( var(--spacer) / 2 );
    padding-bottom: calc( var(--spacer) / 2 );   
    position: absolute;
    white-space: nowrap;
    border-bottom: 5px solid transparent;
    z-index: 2;
    left: -99999em;
}

.nav > li:hover > ul {
    left: calc(-1 * var(--spacer));
    margin-top: 0;
    min-width: 100%;
}

.nav > li li:hover > ul { 
    left: 100%;
    margin-left: 1px;
    top: -1px;
}

/* HAMBURGUER */
.hamburger {
    padding: 0;
    /*display: none;*/
    display: block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover .hamburger-inner,
.hamburger:hover .hamburger-inner::before,
.hamburger:hover .hamburger-inner::after,
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: var(--color-blue-1);
}

.hamburger-box {
    width: 30px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Squeeze */
.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*MOBILE MENU*/
.mm-menu {
    background: var(--color-blue-3);
    border-color: rgba(0,0,0,0);
    color: var(--color-white);
    font-family: var(--font-1);
}

.mm-menu li a {
    text-transform: uppercase;
    font-size: 16px;
}

.mm-listview>li,
.mm-listview>li .mm-next,
.mm-listview>li .mm-next:before,
.mm-listview>li:after {
    border-color: transparent;
}

.mm-menu .mm-listview>li .mm-next:after,
.mm-menu .mm-btn:after,
.mm-menu .mm-btn:before {
    border-color: var(--color-blue-1);
}

.mm-menu .mm-navbar a,
.mm-menu .mm-navbar>* {
    color: var(--color-primary-0);
}

.mm-navbars-top {
    box-shadow: none;
    /*background-color: var(--color-primary-0);*/
}

.mm-navbars-bottom {
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
}

.mm-navbars-top .mm-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
}

.mm-navbars-top .mm-navbar>* {
    padding: 0;
}

.mm-navbars-top .mm-navbar>form {
    width: 100%;
}

.mm-page.mm-slideout {
    background-color: white;
}

.mm-navbar form[role=search] {
    border-bottom: 1px solid var(--color-white);
    margin-bottom: 3px;
}

.mm-navbar form[role="search"] input[type="search"] {
    padding-left: 0;
    padding-right: 30px;
    width: 100%;
    color: var(--color-white);
}

/* HEADER SPACER */
.header-spacer {
    height: 77px;
}

@media only screen and (min-width: 1280px) {
    .menu-principal,
    .menu-social,
    .menu-categorias {
        display: block;
    }

    header .hamburger {
        display: none;
    } 

    header .loupe-box {
        padding-left: 10px;
        margin-left: 10px;
        border-left: 1px solid var(--color-blue-1);
    }   
}

/*  FRONTPAGE > CALENDARIO
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: calc( var(--spacer) / 2 ) 0; 
}

.section-title h2 {
    text-transform: uppercase;
}

.home .section-title h2 {
    color: var(--color-blue-2);
}

.ver-todos {
    color: var(--color-orange-1) !important;
    font-weight: 700;
}

.box-calendar {
    display: flex;
    flex-wrap: wrap;
}

.item-calendar {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin-bottom: 2px;
}

.item-calendar > time {
    background-color: var(--color-blue-3);
    color: var(--color-blue-1);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    min-width: 80px;
    padding: 10px;
    align-items: center;
}

.item-calendar > time:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    margin-top: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--color-blue-3);
    z-index: 1;
}

.item-calendar > time > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: var(--font-1);
}

.item-calendar > time > div > span:nth-child(1) {
    font-size: 30px;
}

.item-calendar > time > div > span:nth-child(2) {
    font-size: 18px;
}

.item-calendar > time.multiple-dates {
    flex-direction: column;
}

.item-calendar > time.multiple-dates > div {
    flex-direction: row;
}

.item-calendar > time.multiple-dates > div > span:nth-child(1),
.item-calendar > time.multiple-dates > div > span:nth-child(2) {
    font-size: 16px;
}

.item-calendar > time.multiple-dates > div > span:nth-child(1)::after {
    content: "/";
    display: inline-block;
    margin-left: -2px;
}

.item-calendar > time.multiple-dates > span.separador {
    font-size: 16px;
    text-transform: lowercase;
    font-family: var(--font-1);
    margin-top: 2px;
    margin-bottom: 4px;
}

.item-calendar > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-grey-3);
    color: var(--color-white);
    padding: 10px 20px;
    flex-grow: 1;
}

.item-calendar > div > h3 {
    font-size: 16px;
}

.item-calendar > a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

#calendario .button.button-wide {
    background-color: var(--color-blue-3);
    color: var(--color-white);
}

@media only screen and (min-width: 600px) {
    .item-calendar {
        max-width: 50%;
    }    
}

@media only screen and (min-width: 1280px) {
    .item-calendar {
        max-width: 25%;
        margin-bottom: 0;
    }    
}

/*  FRONTPAGE > GRID DESTAQUES
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
#home-grid-destaques {
    margin-top: calc( var(--spacer) / 2 );
}

#home-grid-destaques .grid-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 2px 2px;
    grid-template-areas:
    "slot1"
    "slot2"
    "slot3"
    "slot4";
}

#home-grid-destaques .slot1 {
    grid-area: slot1;
    padding-top: 56.25%;
}

#home-grid-destaques .slot2 {
    grid-area: slot2;
    padding-top: 56.25%;
}

#home-grid-destaques .slot3 {
    grid-area: slot3;
    padding-top: 56.25%;
}

#home-grid-destaques .slot4 {
    grid-area: slot4;
    padding-top: 56.25%;
}

@media all and (-ms-high-contrast:none) {
    #home-grid-destaques .grid-container {
        display: -ms-grid;
        -ms-grid-columns: 1fr;
        -ms-grid-rows: repeat(5, 1fr);
    }

    #home-grid-destaques .slot1 {
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }

    #home-grid-destaques .slot2 {
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }

    #home-grid-destaques .slot3 {
        -ms-grid-row: 4;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }

    #home-grid-destaques .slot4 {
        -ms-grid-row: 5;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }
}

@media only screen and (min-width: 1024px) {
    #home-grid-destaques .grid-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 3px 3px;
        grid-template-areas:
        "slot1 slot1 slot2 slot2"
        "slot1 slot1 slot3 slot4";
    }

    #home-grid-destaques .slot1 {
        padding-top: 75%;
    }

    #home-grid-destaques .slot2 {
        padding-top: 28%;
    }

    #home-grid-destaques .slot3 {
        padding-top: 56.25%;
    }

    #home-grid-destaques .slot4 {
        padding-top: 56.25%;
    }    
}


@media all and (-ms-high-contrast:none) and (min-width: 1024px) {
    #home-grid-destaques .grid-container {
        display: -ms-grid;
        -ms-grid-columns: repeat(4, 1fr);
        -ms-grid-rows: repeat(2, 1fr);
    }

    #home-grid-destaques .slot1 {
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
    }

    #home-grid-destaques .slot2 {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 3;
        -ms-grid-column-span: 2;
    }

    #home-grid-destaques .slot3 {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
    }

    #home-grid-destaques .slot4 {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 4;
        -ms-grid-column-span: 1;
    }
}

.slot {
    background-color: var(--color-black);
    overflow: hidden;
}

.slot .imagebox,
.slot .imagebox .inner,
.slot .infos,
.slot > a {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.slot .imagebox,
.slot .imagebox .inner,
.slot > a {
    top: 0;
}

.imagebox,
.imagebox .inner {
    overflow: hidden;   
}

.imagebox .inner {
    opacity: 1;
    transform: scale(1) perspective(1000px);
    -webkit-transform: scale(1) perspective(1000px);
    -webkit-backface-visibility: hidden;
    transition: transform .3s ease, opacity .3s;
    width: 100%;
    padding-top: 56.25%;
}

.imagebox .inner > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) perspective(1000px);
    -webkit-transform: translate(-50%, -50%) perspective(1000px);
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
    -webkit-backface-visibility: hidden;
    /*-webkit-transform: perspective(1000px);*/ 
}

.slot .infos {
    padding: calc(var(--spacer)*2) var(--spacer) var(--spacer) var(--spacer);
}

.slot2 .infos h3,
.slot3 .infos h3,
.slot4 .infos h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.slot .infos::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--color-blue-3), transparent);
    opacity: 1;
    transition: opacity .3s ease, opacity .3s;
}


.slot .category-links {
    margin-bottom: 7px;
}

.slot .category-links > a {
    border-color: var(--color-white);
    color: var(--color-white);
}

.slot .category-links > a:hover {
    border-color: var(--color-blue-1);
    color: var(--color-blue-7);    
}

.slot .infos > span {
    display: block;
    margin-top: calc(var(--spacer)/2);
    font-size: .85em;
}

.slot > a {
    z-index: 0;
}

.slot:hover .imagebox .inner {
    opacity: .35;
    transform: scale(1.1);
}

.slot:hover .infos::before {
    opacity: 0;
}

/*  COLUNISTAS
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
#home-authors {
    margin: -13px 0 0;
}

#home-authors .colunistas > h2 {
    padding: 0 var(--spacer);
    opacity: 0;
    visibility: hidden;
}

#home-authors .center-wrapper {
    display: flex;
    justify-content: flex-end;
    margin: 4px auto;
}

.colunistas {
    position: absolute;
    top: 10px;
    left: 0;
    width: calc( 100% - var(--spacer) );
    margin: 0 calc( var(--spacer) / 2 );
    min-height: 53px;       
}

.colunistas:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    content: "";
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 100%);
    display: block;
}

.colab-slide {
    width: 100%;
}

.colab-slide .swiper-slide {
    width: 100%;
}

.colab-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
}

.colab-item .colab-pic {
    width: 73px;
    height: 73px;
    min-width: 73px;
    border-radius: 50px;
    border: 4px solid var(--color-blue-1);
    background-color: var(--color-blue-1);
    overflow: hidden;
    margin-right: 5px;
    margin-left: 13px;
    box-sizing: border-box;
}

.colab-item .colab-pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .3s ease;
}

.colab-item .colab-dados {
    display: block;
    text-transform: uppercase;
}

.colab-item .colab-dados h3,
.colab-item .colab-dados h4 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
}

.colab-item .colab-dados h4 {
    color: var(--color-black);
    font-style: italic;
}

.colab-item:after {
    content: "+";
    display: block;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -16px;
    margin-left: 0;
    border-radius: 16px;
    background: #000000;
    color: #ffffff;
    text-align: center;
    line-height: 32px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 1.4em;
    transform-origin: center center;    
}

.colab-item.colab-item-isotope:after {
    display: none;
}

.colab-item:after {
    transition: all .3s ease-in-out;
    transform: scale(0);
    background: #585858;
}

.colab-item:hover:after {
    transform: scale(1);
    background: #000000;
}

.colab-item:hover .colab-pic img {
    transform: scale(1.1);
}

@media only screen and (min-width: 600px){
    .colab-slide .swiper-slide {
        width: 50%;
    }   
}

@media only screen and (min-width: 768px){
    .colab-slide .swiper-slide {
        width: 33.3333%;
    }   
}

@media only screen and (min-width: 1024px){
    #home-authors-mobile {
        display: none;
    }

    #home-authors {
        margin: var(--spacer) 0 0;
    }

    #home-authors .center-wrapper {
        margin: 0 auto;
    }

    #home-authors .colunistas > h2 {
        opacity: 1;
        visibility: visible;
    }

    .colab-slide {
        width: calc( 100% - 180px );
    }

    .colab-slide .swiper-slide {
        /*width: 20%;*/
    }

    .colunistas {
        top: 18px;
        /*min-height: 63px;*/       
    }

    .colab-item .colab-pic {
        width: 90px;
        height: 90px;
        min-width: 90px;
    }
}

@media only screen and (min-width: 1280px){
    .colunistas {
        top: 13px;
        min-height: 63px;       
    }

    .colab-slide .swiper-slide {
        width: 25%;
    }
}

@media only screen and (min-width: 1440px){
    .colab-slide .swiper-slide {
        width: 20%;
    }
}

/*colunistas lista*/

.the-content.colunistas-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
}

.the-content.colunistas-lista .colab-item {
    max-width: 114px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 calc( var(--spacer)/ 2) var(--spacer);
}

.the-content.colunistas-lista .colab-item:after {
    top: 45px;
    left: 0px;
}

.the-content.colunistas-lista .colab-pic {
    margin: 0;
}

.the-content.colunistas-lista .colab-name {
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 5px;
    font-weight: normal;
    font-size: 16px;
}

.the-content.colunistas-lista .colab-name span {
    font-family: var(--font-1);
    font-weight: normal;
    text-transform: uppercase;
    font-size: 12px;
    background: var(--color-grey-4);
    padding: 3px 3px 2px 3px;
    display: block;
    color: var(--color-white);
    margin-top: 4px;
}



/*
a.colunista-item {
    display: block;
    max-width: 120px;
    text-align: center;
    margin: 0 calc( var(--spacer)/ 2) var(--spacer);
}

.the-content.colunistas-lista .colab-pic {
    border-radius: 60%;
    overflow: hidden;
    border: 4px solid var(--color-main);
}

.the-content.colunistas-lista .colab-name {
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 5px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.the-content.colunistas-lista .colab-name span {
    font-family: var(--font-1);
    font-weight: normal;
    text-transform: uppercase;
    font-size: 12px;
    background: var(--color-grey-4);
    padding: 3px;
    display: block;
    color: var(--color-white);
    margin-top: 4px;
}
*/

/*  HOME > BLOCO VÍDEOS + LARGE RECTANGLE BANNERS
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.block-video-aside {
    margin-top: var(--spacer);
}

.block-video-aside .center-wrapper,
.block-news-aside .center-wrapper {
    display: flex;
    flex-direction: column;
}

.block-video-aside .center-wrapper > section,
.block-news-aside .center-wrapper > section {
    flex-grow: 1;    
}

.block-video-aside .center-wrapper > aside,
.block-news-aside .center-wrapper > aside {
    width: 100%;
    max-width: 300px;
    margin: var(--spacer) auto;
}

.video-list,
.news-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.video-list article,
.news-list article {
    background-color: var(--color-black);
    color: var(--color-white);
    width: 100%;
    max-width: 100%;
    margin-bottom: 2px;
}

.video-list .imagebox .inner {
    /*opacity: 0.75;*/
}

.news-list-eventos article {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2px;
}

.video-list article:hover .imagebox .inner {
    opacity: .35;
    transform: scale(1.1);
}

.video-list article .infos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    min-height: 75%;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    flex-direction: column;
}

.video-list article .infos::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--color-blue-3), transparent);
    opacity: 1;    
    transition: all .3s ease-in-out;
}

.video-list article .infos h3 {
    font-size: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-list article > span.video-arrow {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.video-list article > span.video-arrow:before {
    content: "";
    background-color: var(--color-blue-3);
    opacity: .3;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-list article > span.video-arrow:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent var(--color-white);
    transform: translate(-40%, -50%);
    transition: all .3s ease-in-out;
}

.video-list article > a {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 0;
}

/*HOVER*/
.video-list article:hover > span.video-arrow {
    border: 2px solid var(--color-blue-1);
}

.video-list article:hover > span.video-arrow:before {
    /*opacity: 0;*/
}

.video-list article:hover .infos::before {
    opacity: 0;
}

.video-list article:hover > span.video-arrow:after {
    border-color: transparent transparent transparent var(--color-blue-1);
}

@media only screen and (min-width: 500px) {
    .block-video-aside .center-wrapper > aside,
    .block-news-aside .center-wrapper > aside {
        margin: 0 auto var(--spacer);
    }

    .video-list article,
    .news-list article {
        max-width: calc( 50% - ( var(--spacer) * .5 ) );
        margin-bottom: var(--spacer);
    } 

    .news-list-eventos article {
        margin-bottom: var(--spacer);
    }

    .video-list article:last-of-type {
        display: none;
    }

    .video-list.video-list-related article:last-of-type {
        display: block;
    }
}

@media only screen and (min-width: 1024px) {
    .block-video-aside .center-wrapper,
    .block-news-aside .center-wrapper {
        flex-direction: row;
    } 

    .block-video-aside .center-wrapper > aside {
        margin: 53px auto 0 var(--spacer);
    }      
}

@media only screen and (min-width: 1280px) {    
    .block-video-aside .center-wrapper > aside,
    .block-news-aside .center-wrapper > aside {
        margin: 63px auto var(--spacer) var(--spacer);
    }

    .video-list article,
    .news-list article {
        max-width: calc( 33.3333% - ( var(--spacer) * .6666 ) );
    }

    .video-list.video-list-related article {
        max-width: calc( 25% - ( var(--spacer) * .75 ) );
    }

    .video-list article:last-of-type {
        display: block;
    }   
}

/*  FRONTPAGE > GRID OUTROS
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
#home-grid-outros {
    /*margin-top: var(--spacer);*/
    margin-bottom: var(--spacer);
}

#home-grid-outros .item {
    margin-bottom: var(--spacer);
}

@media only screen and (min-width: 1024px) {    
    #home-grid-outros .grid-container {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 30px 30px;
        grid-template-areas:
        "item1 item1 item2 item2 item2"
        "item1 item1 item3 item3 item3";
    } 

    #home-grid-outros .item1 { grid-area: item1; }
    #home-grid-outros .item2 { grid-area: item2; }
    #home-grid-outros .item3 { grid-area: item3; }

    #home-grid-outros .item {
        margin-bottom: 0;
    }   
}


@media all and (-ms-high-contrast:none) and (min-width: 1024px) {
    .grid-container {
        display: -ms-grid;
        -ms-grid-columns: repeat(5, 1fr);
        -ms-grid-rows: repeat(2, 1fr);
    }

    .item1 {
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
    }

    .item2 {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 3;
        -ms-grid-column-span: 3;
    }

    .item3 {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 3;
        -ms-grid-column-span: 3;
    }
}

#home-grid-outros .item1,
#home-grid-outros .item2 {
    padding: var(--spacer);
}

#home-grid-outros .section-title {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-bottom: calc( var(--spacer) / 2 )
}

/*PODCASTS*/
#home-grid-outros .item1 {
    display: flex;
    flex-direction: column;
}

#home-grid-outros .item1 .playlist {
    flex-grow: 1;    
}

#home-grid-outros .item1 .playlist iframe {
    min-height: 330px;
}

#home-grid-outros .item1 .button {
    margin-top: 10px;
}

/*ANUNCIE*/
#home-grid-outros .item3 a {
    display: block;    
}

#home-grid-outros .item3 img {
    width: 100%;
}

/*  HOME > BLOCO POSTS + LEADERBOARD
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
#post-list {
    margin-top: calc(25% + 46px);
}

#post-list .center-wrapper > section:first-of-type {
    margin-top: calc(-25% - 46px);
}

#post-list .center-wrapper > section .section-title {
    color: var(--color-white);
}

#post-list .center-wrapper > section:first-of-type .section-title {
    color: var(--color-black);
}

.post-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.post-list article {
    background-color: transparent;
    color: var(--color-grey-3);
    width: 100%;
    max-width: 100%;
    margin-bottom: var(--spacer);
}

.post-list article:hover .imagebox {
    background-color: var(--color-black);
}

.post-list article .imagebox .inner {
    opacity: 1;
}

.post-list article:hover .imagebox .inner {
    transform: scale(1.1);
}

.post-list article > div.infos {
    padding: 10px 0 0;
}

.post-list article > div.infos h3,
.post-list article > div.infos time {
    transition: color .3s ease-in-out;
}

.post-list article > div.infos time,
.news-list article > div.infos time {
    line-height: 24px;
    margin-bottom: 7px;
    display: block;
}

.post-list article > div.infos time {
    margin-bottom: 0;
}

.post-list article > a {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.block-news-aside .center-wrapper > aside {
    display: flex;
    flex-direction: column;
}

.block-news-aside .center-wrapper > aside > .banner-box {
    margin-bottom: var(--spacer);
}

.internal-banner-box > aside > .banner-box {
    margin-top: var(--spacer);
}

.block-news-aside .center-wrapper > aside > .banner-box:last-of-type {
    margin-bottom: 0;
}

/*HOVER*/
.post-list article:hover > div.infos h3 {
    color: var(--color-blue-1);
}

.post-list article:hover  > div.infos time {
    color: var(--color-white);
}

@media only screen and (min-width: 600px) {
    #post-list {
        margin-top: calc(12.5% + 46px);
    }

    #post-list .center-wrapper > section:first-of-type {
        margin-top: calc(-12.5% - 46px);
    }

    .post-list article {
        max-width: calc( 50% - ( var(--spacer) * .5 ) );
    }

    .block-news-aside .center-wrapper > aside {
        flex-direction: row;
        justify-content: space-between;
        max-width: 100%;
    }

    .block-news-aside .center-wrapper > aside > .banner-box {
        margin-bottom: 0;
    }

    .block-news-aside .center-wrapper > aside > .banner-box:nth-child(2) {
        margin-left: var(--spacer);
        margin-right: var(--spacer);
    }
}

@media only screen and (min-width: 900px) {

    #post-list {
        margin-top: calc(8.3325% + 46px);
    }

    #post-list .center-wrapper > section:first-of-type {
        margin-top: calc(-8.3325% - 46px);
    }

    .post-list article {
        max-width: calc( 33.3333% - ( var(--spacer) * .66666 ) );
    } 

    .post-list article:last-of-type {
        display: none;
    }
}

@media only screen and (min-width: 1024px) {

    #post-list {
        margin-top: calc(8.3325% + 53px);
    }

    #post-list .center-wrapper > section:first-of-type {
        margin-top: calc(-8.3325% - 53px);
    }

    .block-news-aside .center-wrapper > aside {
        flex-direction: column;
        justify-content: flex-start;
        max-width: 300px;
    }

    .block-news-aside .center-wrapper > aside > .banner-box {
        margin-bottom: var(--spacer);
    }

    .block-news-aside .center-wrapper > aside > .banner-box:nth-child(2) {
        margin-left: 0;
        margin-right: 0;
    }

}

@media only screen and (min-width: 1280px) {

    #post-list {
        margin-top: calc(6.25% + 63px);
    }

    #post-list .center-wrapper > section:first-of-type {
        margin-top: calc(-6.25% - 63px);
    }    

    .post-list article {
        max-width: calc( 25% - ( var(--spacer) * .75 ) );
    } 

    .post-list article:last-of-type {
        display: block;
    } 
}

/*  HOME > BLOCO NEWS + RECTANGLE BANNERS
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.block-news-aside {
    margin-top: var(--spacer);
}

.news-list article {
    background-color: var(--color-white);
    color: inherit;
    margin-bottom: var(--spacer);
}

.news-list article .imagebox .inner {
    opacity: 1;
}

.news-list article:hover .imagebox .inner {
    transform: scale(1.1);
}

.news-list article .infos {
    width: 100%;
    padding: calc( var(--spacer) / 2 );
}

.news-list article .infos h3 {
    margin-bottom: calc( var(--spacer) / 2 );
}

.news-list article > a {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 0;
}

/*HOVER*/
.news-list article:hover > div.infos h3 {
    color: var(--color-blue-2);
}

@media only screen and (min-width: 1024px) {
    .block-news-aside .center-wrapper {
        flex-direction: row;
    } 

    .block-news-aside .center-wrapper > aside {
        margin: 53px auto 0 var(--spacer);
    }      
}

@media only screen and (min-width: 1280px) {
    .block-news-aside .center-wrapper > aside {
        margin: 63px auto 0 var(--spacer);
    }      
}

/*  FOOTER
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
footer {
    padding: var(--spacer) 0 0;
    /*margin-top: var(--spacer);*/
}

footer .block-1 {
    display: flex;
    align-items: baseline;
    padding-bottom: var(--spacer);
    justify-content: center;
}

footer .block-1 nav {
    margin-left: 15px;
    padding-left: 12px;
    display: block;
}

footer .block-1 nav:before {
    content: "";
    display: block;
    height: 100%;
    width: 1px;
    background-color: var(--color-blue-1);
    position: absolute;
    left: 0;
    top: 0;
}

footer .block-2 {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

footer .block-2 > div > div {
    margin-bottom: calc( var(--spacer) * 2 );
}

footer .block-2 > div > div:last-of-type {
    margin-bottom: 0;
}

footer .block-2 > div {
    width: 100%;
    /*max-width: calc( 33.3333% - ( var(--spacer) * .6666 ) );*/
    margin-bottom: calc( var(--spacer) * 2 );
}

footer h2 {
    text-transform: uppercase;
    margin-bottom: 1em;
    font-size: 16px;
}

footer .block-2 > div:nth-child(2) h2,
footer .block-2 > div:nth-child(3) h2 {
    margin-bottom: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-blue-1);
}

footer p {
    margin-bottom: 1em;
}

footer p > a {
    color: var(--color-white);
}

footer p > a:hover {
    color: var(--color-blue-1);
}

footer p:last-of-type {
    margin-bottom: 0;
}

footer .menu-defaults {
    display: block;
    font-family: inherit;
    text-transform: none;
    font-weight: 700;
    color: var(--color-white);
}

footer .menu-defaults .nav > li {
    clear: both;
}

footer .menu-defaults .nav > li.menu-item-has-children {
    display: none;
}

footer .block-3 {
    border-bottom: 2px solid var(--color-blue-1);
    margin-top: var(--spacer);
}

footer .block-3 .center-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*COPYRIGHT*/
footer .copyright span {
    display: none;
}

/*MOSAIKO*/
.signature {
    margin-top: 10px;
    margin-bottom: -5px;
}

#mosaiko-signature {
    display: table;
    width: 32px;
    height: 32px;
    position: relative;
}
#mosaiko-signature ul {
    list-style-type: none;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#mosaiko-signature ul li {
    position: absolute;
    display: block;
    width: 25%;
    height: 57.5%;  
}
#mosaiko-signature ul li:before {
    content: " ";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    transition: background-color .5s;   
}
#mosaiko-signature ul li:nth-child(odd):before {
    background-color: var(--color-blue-3); 
    transform: skewY(30deg);
}
#mosaiko-signature ul li:nth-child(even):before {
    background-color: var(--color-blue-2);
    transform: skewY(-30deg); 
}

#mosaiko-signature ul li:nth-child(1) {
    z-index: 4;
    top: 42.8%;
    transform: rotate(-60deg);      
}

#mosaiko-signature ul li:nth-child(2) {
    z-index: 3;
    top: 14%;
}

#mosaiko-signature ul li:nth-child(3) {
    z-index: 2;
    top: 0%;
    left: 25%;
    transform: rotate(-60deg);
}

#mosaiko-signature ul li:nth-child(4) {
    z-index: 1;
    top: -0.2%;
    right: 25%;
    transform: rotate(60deg);       
}

#mosaiko-signature ul li:nth-child(5) {
    z-index: 2;
    top: 14%;
    right: 0;
}

#mosaiko-signature ul li:nth-child(6) {
    z-index: 3;
    top: 42.8%;
    right: 0%;
    transform: rotate(60deg);       
}

@media only screen and (min-width: 768px) { 
    footer .block-1 {
        justify-content: flex-start;
    }

    footer .block-2 {
        flex-direction: row;
    }  

    footer .block-2 > div {
        max-width: calc( 33.3333% - ( var(--spacer) * .6666 ) );
        margin-bottom: 0;
    }

    footer .copyright span {
        display: inline;
    }

    footer .copyright br {
        display: none;
    }

}

/*  PÁGINA LISTA CATEGORIAS
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.block-news-aside.internal-page .center-wrapper > section {
    align-self: flex-start;   
}

.internal-page .section-title {
    padding: 0;
    align-items: flex-start;
    margin-bottom: var(--spacer);
    flex-direction: column;
}

/*TÍTULO*/
.internal-page .section-title h1 {
    text-transform: uppercase;
    min-height: calc( 1em + var(--spacer) );
    padding: 0 0 var(--spacer) 0;
}

.internal-page .section-title.dash-under h1:after {
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    background-color: var(--color-blue-3);
    position: absolute;
    top: calc( 100% - 3px );
    left: 0;
}

/*SHARER*/
.sharer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: flex-end;
    flex-direction: column;
    min-width: 140px;
    margin-top: 10px;
}

.sharer .mini-font {
    margin-bottom: 3px;
}

.sharer li {
    margin-left: 5px;
}

.sharer li:first-of-type {
    margin-left: 0;
}

.sharer li:hover {
    background-color: var(--color-blue-1);
}

.sharer-bottom {
    padding-top: 10px;
    margin-top: var(--spacer);
    border-top: 3px solid var(--color-black);
}

.sharer-bottom .sharer {
    flex-direction: row;
    align-items: center;
}

.sharer-bottom .sharer .mini-font {
    margin: 0 5px 0 0;    
}

@media only screen and (min-width: 768px) {
    .internal-page .section-title {
        flex-direction: row;
    }

    .internal-page .section-title h1 {
        padding: 0 var(--spacer) var(--spacer) 0;
    }

    .sharer {
        margin-top: 0px;
    }
}

/*PREV NEXT POSTS*/
.prev-next-post-buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.prev-next-post-buttons > a {
    margin: var(--spacer) 0 0 0;
}

@media only screen and (min-width: 480px) {
    .prev-next-post-buttons {
        justify-content: space-between;
        flex-direction: row;
    }
}

/*  ASIDE INTERNAL PAGES
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
/* version 1
.block-news-aside.internal-page .center-wrapper > aside {
    display: none;
    margin: 0 auto 0 var(--spacer);
}

@media only screen and (min-width: 1024px) {
    .block-news-aside.internal-page .center-wrapper > aside {
        display: block;
    }    
}
*/

/* init: version 2 */
.block-news-aside.internal-page .center-wrapper > aside {
    margin: var(--spacer) auto;
    padding: 0 var(--spacer);
    max-width: 340px;
}

.block-news-aside.internal-page .center-wrapper > aside #search-2 {
    display: none;
}

@media only screen and (min-width: 1024px) {
    .block-news-aside.internal-page .center-wrapper > aside {
        max-width: 300px;
        padding: 0;
        margin: 0 0 0 var(--spacer);
    } 

    .block-news-aside.internal-page .center-wrapper > aside #search-2 {
        display: block;
    }   
}
/* end: version 2 */

/*  WIDGETS
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.widget-content {
    color: var(--color-white);
    margin-bottom: var(--spacer);
    padding: var(--spacer);
    float: left;
    clear: both;
    width: 100%;
}

.widget-content:last-of-type {
    margin-bottom: 0;
}

.widget-content.box-banner {
    padding: 0;
}

/*  PAGINATION
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.pagination {
    display: table;
    margin: auto;
    text-transform: uppercase;
    line-height: 1.4em;
    /*border-top: 3px solid var(--color-black);*/
}

/*
.pagination:before {
    content: " ";
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--color-black);
    top: -3px;
    left: 0;
}
*/

.pagination .inner {
    text-align: center;
}

.pagination .box-bullets {
    display: flex;
    align-items: center;
    margin-top: 3px;
}

.pagination .pagination-bullets {
    margin: auto;
    display: flex;
}

.pagination .box-bullets a,
.pagination .box-bullets span {
    min-width: 40px;
    height: 40px;
    margin: 0 5px;
    text-align: center;
    line-height: 40px;
    background-color: var(--color-blue-3);
    color: var(--color-white);
    text-decoration: none;
}

.pagination .box-bullets a:hover,
.pagination .box-bullets span {
    background-color: var(--color-blue-1);
    color: var(--color-white);
}

/*  SINGLE
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.block-news-aside.internal-page.single-tpl {
    margin-top: 0;
}

.block-news-aside.internal-page.single-tpl .center-wrapper {
    padding: 0;
}

.internal-page .center-wrapper > section.bg-white {
    padding: var(--spacer);   
}

.internal-page .section-title .title-time h1 {
    padding-bottom: calc( var(--spacer) * 2 );
}

.title-time time {
    font-size: 14px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 10px;
    left: -3px;
}

@media only screen and (min-width: 1024px) {
    .block-news-aside.internal-page.single-tpl {
        margin-top: var(--spacer);
    }

    .block-news-aside.internal-page.single-tpl .center-wrapper {
        padding-left: calc( var(--spacer) / 2 );
        padding-right: calc( var(--spacer) / 2 );
    }   
}

@media only screen and (min-width: 1280px) {
    .internal-page .section-title .title-time h1 {
        padding-bottom: calc( var(--spacer) * 1.5 );
    }

    .title-time time {
        bottom: 14px;
    }   
}

/*  RELATED POSTS
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
@media only screen and (min-width: 1024px) {
    .related-posts .news-list article {
        max-width: calc( 25% - ( var(--spacer) * .75 ) );
    }   
}

/*  SEARCH RESULTS PAGE
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.search-results > article {
    margin-bottom: 3px;
}

.search-results > article a {
    padding: var(--spacer);
    background-color: var(--color-white);
}

.search-results > article > a time {
    display: flex;
    align-items: center;
    margin-bottom: 5px;    
    font-size: 12px;    
}

.search-results > article > a h2 {
    font-size: 22px;
    margin-bottom: 0;    
}

.search-results > article > a p {
    margin-bottom: 0;    
}

.search-results > article:hover > a h2 {
    color: var(--color-orange-1);    
}

.search-results > article:hover > a p {
    color: var(--color-black);    
}

.excerpt span {
    font-weight: 700;
    white-space: nowrap;
}

article.item:hover .excerpt span,
a:hover .excerpt span {
    color: var(--color-blue-2);
}

/*  404 PAGE
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.nothing-found {
    background-size: cover;
    background-position: center;
}
.nothing-found > section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 33vh;
    padding: calc( var(--spacer) * 8 ) var(--spacer);
}

.nothing-found .infos {
    text-align: center;
}

.nothing-found .infos > span {
    font-size: 265px;
    line-height: .93em;
}

.nothing-found .infos > h1 {
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 18px;
}

.nothing-found form[role="search"] {
    display: table;
    margin: 10px auto;
    max-width: calc( 100% - 24px );
}

.nothing-found form[role="search"] input[type="search"] {
    width: 100%;
    color: var(--color-white);
}

.nothing-found form[role="search"] ::placeholder {
    color: var(--color-white);
    opacity: 1;
}

.nothing-found form[role="search"] :-ms-input-placeholder {
    color: var(--color-white);
}

.nothing-found form[role="search"] ::-ms-input-placeholder {
    color: var(--color-white);
}


/*  DEFAULT CONTENT
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.the-content {
    margin-bottom: calc( var(--spacer) * -1 );
}

/*TÍTULOS*/
.the-content h1,
.the-content h2,
.the-content h3,
.the-content h4,
.the-content h5,
.the-content h6 {
    text-transform: inherit;
    margin-bottom: var(--spacer);
    color: var(--color-blue-3);
}

.the-content h1 {
    font-size: 36px;
}

.the-content h2 {
    font-size: 28px;
}

.the-content h3 {
    font-size: 22px;
}

.the-content h4 {
    font-size: 18px;
}

.the-content h5 {
    font-size: 16px;
}

/*PARÁGRAFOS*/
.the-content p {
    line-height: 1.45em;
    word-wrap: break-word;
    margin-bottom: var(--spacer);
    font-size: 16px;
    color: var(--color-grey-5);
}

.the-content p a {
    color: var(--color-black);
    text-decoration: underline;
}

.the-content p a:hover {
    color: var(--color-main);
}

/*LISTAS*/
.the-content ul {
    list-style: none;
    margin: 0 0 var(--spacer) calc( var(--spacer) * 1.5 );
}

.the-content ul li {
    line-height: 1.45em;
    margin-bottom: .5em;
    color: var(--color-grey-5);
}

.the-content ul li::before {
    content: "\25AA";
    color: var(--color-blue-dark);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.the-content ol {
    list-style: none;
    counter-reset: li;
    margin: 0 0 var(--spacer) calc( var(--spacer) * 1.5 );
}

.the-content ol li {
    counter-increment: li;
    line-height: 1.45em;
    margin-bottom: .5em;
    color: var(--color-grey-5);
}

.the-content ol li::before {
    content: counter(li);
    color: var(--color-blue-dark);
    display: inline-block;
    width: 1em;
    margin-left: -1.5em;
    margin-right: 0.5em;
    text-align: right;
    direction: rtl;
}

/*BLOCKQUOTE*/
.the-content blockquote,
.the-content blockquote p {
    font-size: 24px;
    /* text-align: center; */
    color: var(--color-white);
    line-height: 1.35em;
    border: none;    
}

.the-content blockquote {
    margin-bottom: var(--spacer);
    padding: .75em 1em;
    background-color: var(--color-blue-2);
}

/*HR*/
.the-content hr {
    margin-bottom: var(--spacer);
    border-color: var(--color-black);
    border-style: solid;
    border-width: 1px;
    border-top: none;
}

/*TABLES*/
.the-content table {
    width: 100%;
    margin-bottom: var(--spacer);
    color: var(--color-black);
}

.the-content table tr th,
.the-content table tr td {
    line-height: 24px;
    padding: 8px 20px;
    border: 1px solid var(--color-white);
}

.the-content table tr th {
    background-color: var(--color-main);
    color: var(--color-white);
}

.the-content table tr:nth-child(even) td {
    background-color: rgba(0,0,0,.1);
}

.the-content table tr:nth-child(odd) td {
    background-color: rgba(0,0,0,.05);
}

/*FORMS*/
.the-content form {
    background-color: var(--color-main);
    color: var(--color-white);
    padding: calc( var(--spacer) / 2 );
    min-width: 270px;
    max-width: 100%;
    margin: 0 auto var(--spacer) auto;
}

.the-content form p {
    margin-bottom: calc( var(--spacer) / 2 );
}

.the-content form label {
    display: block;
    font-weight: bold;
}

.the-content form label,
.the-content form p,
.the-content form span {
    color: var(--color-white);
    font-size: 14px;
}

/*VIDEO EMBED*/
.the-content figure.wp-block-embed {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: var(--spacer);
}

.the-content .embed-container,
.the-content .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.the-content .embed-container iframe,
.the-content .embed-container object,
.the-content .embed-container embed,
.the-content .wp-block-embed__wrapper iframe,
.the-content .wp-block-embed__wrapper object,
.the-content .wp-block-embed__wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*WP GALLERY OVERWRITE*/
.the-content .wp-block-gallery {
    margin-bottom: var(--spacer);
}

.the-content .wp-block-gallery ul {
    list-style: none;
    margin: 0;
    padding: 0; 
}

.the-content .wp-block-gallery ul li::before {
    display: none;
}

.wp-block-gallery .blocks-gallery-item figcaption {
    display: none;
    position: absolute;
    bottom: 0;
    top: unset;
    width: 100%;
    z-index: 1;
    height: auto;
    margin: 0;
    padding: 0;
    color: var(--color-blue-dark);
    text-align: center;
    padding: var(--spacer) var(--spacer) calc( var(--spacer) / 4 );
    font-size: 12px;
    line-height: 1.35em;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}

@media only screen and (min-width: 1000px) {
    .wp-block-gallery .blocks-gallery-item figcaption {
        display: block;
    }
}

/* Merdas importadas de plugins do site antigo*/
.the-content .wp-caption {
    max-width: 100%;
}

.the-content .wp-caption-text {
    font-size: 75%;
    font-style: italic;
}

.the-content > p > iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: var(--spacer);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.the-content > p > a.button.button-full {
    max-width: inherit;
    white-space: inherit;
    height: auto;
    text-align: center;
    padding: .5em var(--spacer);
    line-height: 1.2em;
    text-decoration: none;
    color: var(--color-blue-3);
}


/*  SINGLE EVENTOS
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.eventos-title-box .item-calendar {
    max-width: 100%;    
}

.eventos-title-box .item-calendar > div {
    background-color: transparent;
    /*background-color: var(--color-grey-1);*/
}

.eventos-allblocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.eventos-block {
    border: 3px solid var(--color-grey-1);
    margin-bottom: var(--spacer);
    padding: var(--spacer);
}

.eventos-block.onde,
.eventos-block.quando,
.eventos-block.importante {
    width: 100%;
    max-width: 100%;
}

.eventos-allblocks .eventos-block:last-of-type {
    margin: 0;
}

.eventos-block .button.arrow-next {
    margin: 0;
}

.eventos-datas {
    display: flex;
    flex-direction: column;
}

.eventos-datas time {
    line-height: 24px;
    margin-bottom: 7px;
    display: block;
    padding-left: var(--spacer);
    color: var(--color-black);
}

.eventos-block.importante p:last-of-type {
    margin: 0;
}

.eventos-block.importante {
    border: none;
    color: var(--color-white);
    background-color: var(--color-main); 
}

.eventos-block.importante h2,
.eventos-block.importante p {
    color: var(--color-white) !important;
}

.eventos-block.informacoes-adicionais {
    padding-bottom: 0;
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .eventos-all-title {
        background-color: var(--color-grey-3);   
    }

    .eventos-all-title .sharer {
        margin: 0 20px 10px 0;   
    }

    .eventos-block.onde,
    .eventos-block.quando {
        width: 100%;
        max-width: calc( 50% - ( var(--spacer) / 2 ) );
    }    
}

/*  AUTHOR PAGE
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.news-list .author-header.colab-item {
    padding: var(--spacer) 0;
    align-items: flex-start;
}

.news-list .author-header.colab-item .colab-dados {
    text-transform: inherit;
}

.news-list .author-header.colab-item .colab-dados > h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 0 calc( var(--spacer) / 2 );
    text-transform: uppercase;
    margin-bottom: .3em;
}

.news-list .author-header.colab-item .colab-dados > p {
    padding: 0 calc( var(--spacer) / 2 );
    font-size: 80%;
    line-height: 1.3em;
}

@media only screen and (min-width: 768px) {
    .news-list .author-header.colab-item {
        padding: calc( var(--spacer) / 2 ) 0;
        align-items: center;
    }   
}

/*  MAILCHIMP
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
.mailchimp-form #mc_embed_signup div.mce_inline_error {
    margin: 0 0 1em 0;
    background-color: transparent;
    font-weight: bold;
    z-index: 1;
    color: var(--color-white);
    font-size: 10px;
    padding: 5px 0;
}

.mailchimp-form .mc-field-group {
    margin-bottom: 11px;
}

/*  BANNER YOUTUBE
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== 
    ========================================================================== */
#videos.home {
    display: flex;
    flex-direction: column;
}

.ytchannel {
    background-color: var(--color-black);
    background-image: url(../images/bg-ytchannel.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: var(--spacer);
    display: block;
    min-height: 200px;
}

.ytchannel > a {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: calc(var(--spacer)*1.5);
    color: var(--color-white);
}

.ytchannel > a > img {
    margin-bottom: calc(var(--spacer)/2);
}

.sidebar .bg-black {
    background-color: var(--color-blue-3);
    color: var(--color-white);
}

.sidebar .bg-main {
    background-color: var(--color-grey-3);
    color: var(--color-white);
}