/* AJUSTES */
/*PARA CORREGIR EL AUTO AJUSTE DE TEXTO EN ALGUNOS NAVEGADORES*/
html *{ max-height: 1000000px; }
*{ /*margin: 0; padding: 0;*/ box-sizing: border-box;
    outline: none; word-wrap: break-word; overflow-wrap: break-word;
    word-break: break-word; -webkit-tap-highlight-color: transparent; border: none;
}
body{
    font-family: Roboto,arial,sans-serif; min-height: 100vh; margin: 0 auto;
    color: var(--TEXT); background: var(--BACK-COLOR);
    --PRIMARY: rgba(205,47,124,1);
    --PRIMARY-LIGHTEN: rgba(230,73,149,1);
    --SECONDARY: rgba(59,89,152,1);
    --SECONDARY-LIGHTEN: rgba(119,149,212,1);
    --ORANGE: rgba(255,128,0,1);
    --LIGHT-ORANGE: rgba(255,180,0,1);
    --WHITE: rgba(255,255,255,1);
    --RED: rgba(235,77,65,1);
    --LIGHT-RED: rgba(255,97,85,1);
    --BLUE: rgba(128,128,255,1);
    --GREEN: rgba(100,200,100,1);
    --GOLDEN: rgba(239,184,16,1);
    --SILVER: rgba(138,149,151,1);
    --HALF-GREY: rgba(128,128,128,0.5);
    --FOOTER: rgba(40,45,41,1);
    --WHATSAPP: rgb(37,211,102);
    --TWITTER: rgba(82,174,239);
    --INSTAGRAM: rgba(193,53,132);
    --FACEBOOK: rgba(59,89,152);
    min-height: 100vh; margin: 0 auto;
    position: relative; display: flex; flex-direction: column;
    transition: background .3s, color .3s;
    scrollbar-width: thin; overflow-y: scroll;

    --primary: var(--PRIMARY) !important;
    --secondary: var(--SECONDARY) !important;
    --surface: var(--BACK-LAYER-1) !important;
    --on-surface: var(--TEXT) !important;
    --surface-variant: var(--BACK-LAYER-3) !important;

    min-height: 100vh;
}
body > footer{
    margin-top: auto;
}
                    body::-webkit-scrollbar {
                        width: 12px; height: 12px; background: transparent;
                    }
                    body::-webkit-scrollbar-thumb{
                        background: rgba(128,128,128,.5); -webkit-border-radius: 1ex;
                    }

                    .stories::-webkit-scrollbar {
                        width: 12px; height: 12px; background: transparent;
                    }
                    .stories::-webkit-scrollbar-thumb{
                        background: rgba(128,128,128,.5); -webkit-border-radius: 1ex;
                    }
    body.light{
        --CHIP: #dbe2f9;
        --BACK-COLOR: rgba(253, 253, 253, 1);
        --BACK-COLOR-WEAK: rgba(253, 253, 253, 0.8);
        --BACK-LAYER-1: rgba(255, 255, 255, 1);
        --BACK-LAYER-2: rgba(245, 245, 245, 1);
        --BACK-LAYER-3: rgba(235, 235, 235, 1);

        --TEXT-PRIMARY: var(--PRIMARY);
        --TEXT: rgba(0,0,0,0.8);
        --TEXT-WEAK: rgba(61,61,61,.8);
        --LOGO-COLOR: rgba(30,30,30,0.9);

        --TEXT-WEAK-1: rgba(15,15,15,0.8);
        --TEXT-WEAK-2: rgba(30,30,30,0.8);
        --TEXT-WEAK-3: rgba(50,50,50,0.8);
        --TEXT-WEAK-4: rgba(75,75,75,0.8);
        --TEXT-WEAK-5: rgba(105,105,105,0.8);

        --NAV: rgba(255,255,255,.1);
        --NAV-SCROLLED: rgba(255,255,255,.8);

        --SPINNER-BACK: rgba(255,255,255,.75);
        --SPINNER-COLOR: rgb(59,89,152);
        --SOFT-GREY: rgba(230,230,230,1);

        --secondary-container: rgba(119,149,212,0.25) !important;
        --SECONDARY-DYNAMIC: var(--SECONDARY);
        --FILL-COLOR: rgba(205,47,124,0.15);
    }
    body.dark{
        --CHIP: #3f4659;
        --BACK-COLOR: rgba(42,42,37,1);
        --BACK-COLOR-WEAK: rgba(42,42,37,0.5);
        --BACK-LAYER-1: rgba(48, 48, 43, 1);
        --BACK-LAYER-2: rgba(58, 58, 53, 1);
        --BACK-LAYER-3: rgba(68, 68, 63, 1);

        --TEXT-PRIMARY: var(--PRIMARY-LIGHTEN);
        --TEXT: rgba(255,255,255,0.9);
        --TEXT-WEAK: rgba(194,194,194,0.9);
        --LOGO-COLOR: rgba(255,255,255,0.9);

        --TEXT-WEAK-1: rgba(245,245,245,1);
        --TEXT-WEAK-2: rgba(235,235,235,1);
        --TEXT-WEAK-3: rgba(215,215,215,1);
        --TEXT-WEAK-4: rgba(190,190,190,1);
        --TEXT-WEAK-5: rgba(160,160,160,1);

        --NAV: rgba(42,42,37,.1);
        --NAV-SCROLLED: rgba(42,42,37,.8);

        --SPINNER-BACK: rgba(42,42,40,.75);
        --SPINNER-COLOR: rgb(230,73,149);
        --SOFT-GREY: rgba(50,50,50,1);

        --secondary-container: rgba(59,89,152,0.25) !important;
        --surface-container-low: var(--BACK-LAYER-2);
        --SECONDARY-DYNAMIC: var(--SECONDARY-LIGHTEN);
        --FILL-COLOR: rgba(205,47,124,0.15);
    }
.wave:after, .chip:after, .wave.light:after, :is(.button,button):after{
    display: none;
}
.button:not(.primary):not(.secondary):not(.tertiary), 
button:not(.primary):not(.secondary):not(.tertiary){ 
    color: inherit; background: unset; 
}
nav.drawer > a, nav.drawer :is(summary, details) > a, 
.button, button,
:is(button, .button).small:not(.circle){ 
    border-radius: 0.5rem; 
}
:is(button, .button).small:not(.circle){ 
    border-radius: 0.5rem; 
}
:is(button, .button).large:not(.circle){ 
    border-radius: 0.5rem; 
}
:is(button, .button).extra:not(.circle){ 
    border-radius: 0.5rem; 
}
:is(.button, button).fill, .chip.fill{
    background-color: var(--surface-variant) !important;
}

:is(.checkbox,.radio)>span:not(:empty){
    white-space: pre-wrap;
}
.switch>input:checked+span:after{
    background-color: var(--SECONDARY);
}
.switch>input:checked+span:before, .switch.icon>input:checked+span>i{
    color: var(--SECONDARY); background: var(--WHITE); 
}
nav.drawer>a:is(:hover,.active), nav.drawer :is(summary,details)>a:is(:hover,.active){
    background: rgba(128,128,128,0.15);
}
h1, h2, h3, h4, h5, h6{
    /*display: initial;*/
}
i.vanilla{
    inline-size: unset;
    min-inline-size: unset;
}
/* AJUSTES FIN */

/*LOGO*/
.app-logo{
    display: flex;
    color: var(--LOGO-COLOR);
    white-space: nowrap;
    align-items: center;
}
    .app-logo > span{
        font-size: 1.5rem;
        font-weight: 600;
        letter-spacing: 0.1rem;
    }
    .app-logo > i{
        margin-right: 0.5rem;
        font-size: 2.5rem;
        block-size: auto;
        width: auto;
    }
/*LOGO FIN*/

/*ADM GRID MAGES*/
.adm-grid-images .gallery-pic{
        /*padding-top: 100%;*/
        display: flex;
        width: 100px;
        height: 100px;
        justify-content: center;
        align-items: center;
    }
    .adm-grid-images .gallery-pic.deleted > img{
        border: 3px solid var(--RED);
    }
        .adm-grid-images .gallery-pic > img{
            max-width: 100%;
            max-height: 100%;
        }
/*ADM GRID MAGES END*/

/*SWITCH AND CHECKBOX*/
:is(.checkbox, .radio, .switch) > span::before, .icon > span > i{
    color: var(--SECONDARY-DYNAMIC);
}
:is(.checkbox, .radio) > input:checked + span::before, :is(.checkbox, .radio).icon > input:checked + span > i{
    color: var(--SECONDARY-DYNAMIC);
}
/*SWITCH AND CHECKBOX*/


/*DIALOG*/
dialog.top, dialog.bottom, dialog:not(.left):not(.right):not(.max){ max-height: 75vh; }
.dialog-tall dialog.top, dialog.bottom, dialog:not(.left):not(.right):not(.max){ max-height: 80vh; }
dialog{background: var(--BACK-LAYER-1);}
.overlay.blur{
    /*backdrop-filter: none !important;*/
}
body.dialog-open{
    overflow-y: hidden;
}
/*DIALOG END*/

/*ARTICLE*/
article{
    box-shadow: none;
}
/*ARTICLE END*/

/*SPINNER*/
.spinner-container{
    width: 100%; min-height: 10em; display: none; align-items: center; 
    justify-content: center; flex-direction: column; z-index: 10; opacity: 0; 
    pointer-events: none; transition: all .3s; border-radius: 0 !important;
}
    .spinner-container.spinner-form{
        display: flex; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
        background: var(--SPINNER-BACK); min-height: unset;
    }
.spinner-container.display{opacity: 1; pointer-events: all; display: flex;}
/*SPINNER END*/

/*HIGHCHARTS*/
.highcharts-title, 
.highcharts-axis-labels text,
.highcharts-plot-band-label,
.highcharts-plot-line-label,
.highcharts-text-outline,
.highcharts-axis-title,
.highcharts-legend-item text{
    color: var(--TEXT) !important; fill: var(--TEXT) !important;
    transition: all 0.3s;
}
/*.highcharts-text-outline{
    stroke-width: 0;
}*/
.highcharts-legend-box{
    fill: var(--BACK-LAYER-2) !important; transition: all 0.3s;
}
/*HIGHCHARTS END*/

/*TOAST*/
#toast-container {
    display: block;
    position: fixed;
    z-index: 100000;
}
.toast {
    border-radius: 0.5rem;
    top: 35px;
    width: auto;
    margin-top: 10px;
    position: relative;
    max-width: 100%;
    height: auto;
    min-height: 48px;
    line-height: 1.5em;
    background-color: #323232;
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: 300;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: default;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),
    0 3px 1px -2px rgba(0,0,0,0.12),
    0 1px 5px 0 rgba(0,0,0,0.2);
}
.toast .toast-action {
    color: #eeff41;
    font-weight: 500;
    margin-right: -25px;
    margin-left: 3rem;
}
.toast.rounded {
    border-radius: 24px;
}
@media only screen and (max-width : 600px) {
    /*.toast {
        width: 100%;
        border-radius: 0;
    }
    #toast-container {
        min-width: 100%;
        bottom: 0%;
    }*/
    #toast-container {
        left: 5%;
        bottom: 5%;
        max-width: 80%;
    }
}

@media only screen and (min-width : 601px) and (max-width : 992px) {
    #toast-container {
        left: 5%;
        bottom: 7%;
        max-width: 90%;
    }
}
@media only screen and (min-width : 993px) {
    #toast-container {
        top: 10%;
        right: 7%;
        max-width: 86%;
    }
}

.field input.select-dropdown{
    border: 1px solid transparent;padding: 0 15px; font-family: inherit; font-size: 16px;width: 100%;
    height: 100%; outline: none; z-index: 1;background: none; box-sizing: border-box;
    resize: none; border-radius: inherit; transition: background 0.3s ease, border 0s ease, color 0.3s ease;
    color:  var(--TEXT-WEAK-1);
}
.field > .select-wrapper{
    width: 100%; height: 100%; border-radius: inherit;
}
.field .select-wrapper > input.select-dropdown{
    -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer;
}
.field.border input.select-dropdown{border-color: var(--outline); box-shadow: none !important; padding-right: 3em;}
.field.round input.select-dropdown:focus{padding-left: 22px; padding-right: 22px;}
.field.prefix input.select-dropdown{padding-left: 47px;}
.field.prefix input.select-dropdown:focus{padding-left: 46px;}
.field.suffix input.select-dropdown{padding-right: 47px;}
.field.suffix input.select-dropdown:focus{padding-right: 46px;}
.field:not(.border, .flat, .round) input.select-dropdown{border-bottom-color: var(--TEXT-COLOR-WEAK-5);}
.field.fill input.select-dropdown{box-shadow: none;}
.field.flat input.select-dropdown{border-color: transparent!important; box-shadow: none!important;}
.field.invalid:not(.border, .round, .flat) input.select-dropdown:focus{border-bottom-color: var(--RED);}
.field.invalid.border input.select-dropdown:focus{border-color: var(--RED);}
.field.label input.select-dropdown{padding-top: 16px;}
.field .select-wrapper + label{
    /*z-index: 10000;*/
}
.field.label input.select-dropdown{
    clip-path: polygon(-2% -2%,.75rem -2%,.75rem .5rem,calc(100% - 5rem) .5rem,calc(100% - 5rem) -2%,102% -2%,102% 102%,-2% 102%);
}
/*SELECT*/

.round {
    border-radius: var(---round) !important;
}

/* Select Field ========================================================================== */
/*select.browser-default {
    opacity: 1;
}
select {
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.90);
    width: 100%;
    padding: 5px;
    border: 1px solid #f2f2f2;
    border-radius: 2px;
    height: 3rem;
}*/
.select-label {
    position: absolute;
}
.select-wrapper > select{display: none;}
.select-wrapper {
    position: relative;
    /*z-index: 10 !important;*/
    /*border: 1px solid blue!important;*/
}
.select-wrapper input{
    /*border: 1px solid yellow!important;*/
}
.select-wrapper.valid + label, .select-wrapper.invalid + label {
    width: 100%;
    pointer-events: none;
}
.select-wrapper input.select-dropdown {
    /*position: relative;
    cursor: pointer;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid color("grey", "base");
    outline: none;
    height: 3rem;
    line-height: 3rem;
    width: 100%;
    font-size: 16px;
    margin: 0 0 8px 0;
    padding: 0;
    display: block;
    user-select: none;
    z-index: 1;*/
}
.select-wrapper input.select-dropdown:focus {
    /*border-bottom: 1px solid color("teal", "lighten-1");*/
}
.select-wrapper .caret {
    display: none;
    /*position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 0;
    fill: rgba(0, 0, 0, .87);*/
}
.select-wrapper + label {
    position: absolute;
    top: -26px;
    font-size: 0.8rem;
}
.select-wrapper .hide-select {
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: -1;
}
select:disabled {
    /*color: rgba(0, 0, 0, .42);*/
    opacity: 0.5;
}
.select-wrapper.disabled + label {
    color: yellow;
}
.select-wrapper.disabled .caret {
    fill: rgba(0, 0, 0, .42);
}
.select-wrapper input.select-dropdown:disabled {
    /*color: blue;
    cursor: default;
    user-select: none;*/
}
.select-wrapper i {
    color: rgba(0, 0, 0, .3);
}
.select-dropdown li.disabled, .select-dropdown li.disabled > span, .select-dropdown li.optgroup {
    /*color: rgba(0, 0, 0, .3);
    background-color: transparent;*/
    opacity: 0.5;
}
body.keyboard-focused .select-dropdown.dropdown-content li:focus {
    background-color: rgba(128, 128, 128, 0.25);
}
.select-dropdown.dropdown-content li.selected {
    background-color: rgba(128, 128, 128, 0.15);
}
.select-dropdown.dropdown-content li:hover {
    background-color: rgba(128, 128, 128, 0.25);
}
.prefix ~ .select-wrapper {
    margin-left: 3rem;
    width: 92%;
    width: calc(100% - 3rem);
}
.prefix ~ label {
    margin-left: 3rem;
}
.select-dropdown li img {
    height: 40px;
    width: 40px;
    margin: 5px 15px;
    float: right;
}
.select-dropdown li.optgroup {
    min-height: unset;
    pointer-events: none;
}
.select-dropdown li.optgroup.selected > span {
    color: rgba(0, 0, 0, .7);
}
.select-dropdown li.optgroup > span {
    color: var(--TEXT-WEAK);
    padding: 5px 15px;
}
.select-dropdown li.optgroup ~ li.optgroup-option {
    padding-left: 0.5rem;
}
/*SMALL DROPDOWN SELECT*/
.small-select ul > li.optgroup-option > span{
    padding: 0.5em 0.75em;
}
    .small-select ul > li > span > label > span{
        font-size: 1.2em !important;
        padding-left: 25px !important;
    }
    .small-select ul > li > span{
        font-size: 1.1em !important;
        padding: 0.5em 0.75em;
    }
    .small-select .select-dropdown [type="checkbox"]:checked + span:not(.lever):before {
        height: 16px;
        width: 7px;
        left: -10px;
    }
    .small-select .select-dropdown [type="checkbox"] + span:not(.lever):before, .select-dropdown [type="checkbox"]:not(.filled-in) + span:not(.lever):after{
        width: 12px;
        height: 12px;
        left: -4px;
    }
    .small-select .dropdown-content li{
        min-height: unset;
    }
    .small-select .select-dropdown li.optgroup > span{
        font-size: 0.9em !important;
    }
    .small-select .field{
        block-size: 2.5rem;
    }
    .small-select .select-dropdown li img {
        height: 25px;
        width: 25px;
        margin: 5px 5px;
    }

.select-dropdown [type="checkbox"] + span:not(.lever) {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    /*height: 25px;*/
    line-height: 25px;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.select-dropdown [type="checkbox"]:not(:checked),
.select-dropdown [type="checkbox"]:checked {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.select-dropdown [type="checkbox"] + span:not(.lever):before,
.select-dropdown [type="checkbox"]:not(.filled-in) + span:not(.lever):after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    z-index: 0;
    border: 2px solid rgba(128, 128, 128, 0.35);
    border-radius: 1px;
    margin-top: 3px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.select-dropdown [type="checkbox"]:not(.filled-in) + span:not(.lever):after {
    border: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.select-dropdown [type="checkbox"]:checked + span:not(.lever):before {
    top: -4px;
    left: -5px;
    width: 12px;
    height: 22px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid var(--PRIMARY);
    border-bottom: 2px solid var(--PRIMARY);
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}
    body.light .select-dropdown [type="checkbox"]:checked + span:not(.lever):before{
        border-right: 2px solid var(--SECONDARY);
        border-bottom: 2px solid var(--SECONDARY);
    }
    body.dark .select-dropdown [type="checkbox"]:checked + span:not(.lever):before{
        border-right: 2px solid var(--SECONDARY-LIGHTEN);
        border-bottom: 2px solid var(--SECONDARY-LIGHTEN);
    }
.select-dropdown [type="checkbox"]:not(:checked):disabled + span:not(.lever):before {
    border: none;
    background-color: rgba(0, 0, 0, 0.42);
}


/*dropdown*/
.dropdown-content {
    background-color: var(--BACK-LAYER-3);
    margin: 0;
    display: none;
    min-width: 100px;
    overflow-y: auto;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    transform-origin: 0 0;
    list-style: none;
    padding-left: 0;
    max-height: 25rem;
}
body.light .dropdown-content{
    background-color: var(--BACK-COLOR);
}
.select-tall .dropdown-content{
    max-height: 40rem;
}
.dropdown-content:focus {
    outline: 0;
}
.dropdown-content li {
    clear: both;
    color: var(--TEXT);
    cursor: pointer;
    min-height: 50px;
    line-height: 1.5rem;
    width: 100%;
    text-align: left;
}
.dropdown-content li > span::after{
    content: attr(description);
    display: block;
    position: relative;
    font-size: 0.75em;
    pointer-events: none;
    opacity: 0.5;
}
.dropdown-content li:hover, .dropdown-content li.active {
    background-color: #eee;
}
.dropdown-content li:focus {
    outline: none;
}
.dropdown-content li.divider {
    min-height: 0;
    height: 1px;
}
.dropdown-content li > a, .dropdown-content li > span {
    font-size: 16px;
    color: color("teal", "lighten-1");
    display: block;
    line-height: 22px;
    padding: 14px 16px;
}
.dropdown-content li > span > label {
    top: 1px;
    left: 0;
    height: 18px;
}
.dropdown-content li > a > i {
    height: inherit;
    line-height: inherit;
    float: left;
    margin: 0 24px 0 0;
    width: 24px;
}
body.keyboard-focused .dropdown-content li:focus {
    background-color: #dadada;
}
.input-field.col .dropdown-content [type="checkbox"] + label {
    top: 1px;
    left: 0;
    height: 18px;
    transform: none;
}
.dropdown-trigger {
    cursor: pointer;
}
.dropdown-content{
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

/*TABS*/
body.light .tabs > a.active {
    color: var(--SECONDARY);
    border-block-end: 0.125rem solid var(--SECONDARY);
}
body.light .tabs > a.active > i {
    color: var(--SECONDARY);
}
body.dark .tabs > a.active {
    color: var(--SECONDARY-LIGHTEN);
    border-block-end: 0.125rem solid var(--SECONDARY-LIGHTEN);
}
body.dark .tabs > a.active > i {
    color: var(--SECONDARY-LIGHTEN);
}

table.stripes>tbody>tr:nth-child(odd){
    background-color: rgba(128,128,128,0.1);
}

/*FONT SIZE:*/
.f-05{font-size: 0.5em !important;}
.f-06{font-size: 0.6em !important;}
.f-07{font-size: 0.7em !important;}
.f-08{font-size: 0.8em !important;}
.f-09{font-size: 0.9em !important;}
.f-1{font-size: 1em !important;}
.f-11{font-size: 1.1em !important;}
.f-12{font-size: 1.2em !important;}
.f-13{font-size: 1.3em !important;}
.f-14{font-size: 1.4em !important;}
.f-15{font-size: 1.5em !important;}
.f-2{font-size: 2em !important;}
.f-3{font-size: 3em !important;}
.f-4{font-size: 4em !important;}
.f-5{font-size: 5em !important;}
/* PADDINGS */
.p-0{padding: 0 !important;} .px-0{padding-left: 0 !important; padding-right: 0 !important;} .py-0{padding-top: 0 !important; padding-bottom: 0 !important;}
.pt-0{padding-top: 0 !important;} .pb-0{padding-bottom: 0 !important;} .pl-0{padding-left: 0 !important;} .pr-0{padding-right: 0 !important;}

.p-1{padding: 0.5em !important;} .px-1{padding-left: 0.5em !important; padding-right: 0.5em !important;} .py-1{padding-top: 0.5em !important; padding-bottom: 0.5em !important;}
.pt-1{padding-top: 0.5em !important;} .pb-1{padding-bottom: 0.5em !important;} .pl-1{padding-left: 0.5em !important;} .pr-1{padding-right: 0.5em !important;}

.p-2{padding: 1em !important;} .px-2{padding-left: 1em !important; padding-right: 1em !important;} .py-2{padding-top: 1em !important; padding-bottom: 1em !important;}
.pt-2{padding-top: 1em !important;} .pb-2{padding-bottom: 1em !important;} .pl-2{padding-left: 1em !important;} .pr-2{padding-right: 1em !important;}

.p-3{padding: 1.5em !important;} .px-3{padding-left: 1.5em !important; padding-right: 1.5em !important;} .py-3{padding-top: 1.5em !important; padding-bottom: 1.5em !important;}
.pt-3{padding-top: 1.5em !important;} .pb-3{padding-bottom: 1.5em !important;} .pl-3{padding-left: 1.5em !important;} .pr-3{padding-right: 1.5em !important;}

.p-4{padding: 2em !important;} .px-4{padding-left: 2em !important; padding-right: 2em !important;} .py-4{padding-top: 2em !important; padding-bottom: 2em !important;}
.pt-4{padding-top: 2em !important;} .pb-4{padding-bottom: 2em !important;} .pl-4{padding-left: 2em !important;} .pr-4{padding-right: 2em !important;}

.p-5{padding: 2.5em !important;} .px-5{padding-left: 2.5em !important; padding-right: 2.5em !important;} .py-5{padding-top: 2.5em !important; padding-bottom: 2.5em !important;}
.pt-5{padding-top: 2.5em !important;} .pb-5{padding-bottom: 2.5em !important;} .pl-5{padding-left: 2.5em !important;} .pr-5{padding-right: 2.5em !important;}

.p-6{padding: 3em !important;} .px-6{padding-left: 3em !important; padding-right: 3em !important;} .py-6{padding-top: 3em !important; padding-bottom: 3em !important;}
.pt-6{padding-top: 3em !important;} .pb-6{padding-bottom: 3em !important;} .pl-6{padding-left: 3em !important;} .pr-6{padding-right: 3em !important;}

.p-7{padding: 3.5em !important;} .px-7{padding-left: 3.5em !important; padding-right: 3.5em !important;} .py-7{padding-top: 3.5em !important; padding-bottom: 3.5em !important;}
.pt-7{padding-top: 3.5em !important;} .pb-7{padding-bottom: 3.5em !important;} .pl-7{padding-left: 3.5em !important;} .pr-7{padding-right: 3.5em !important;}

.p-8{padding: 4em !important;} .px-8{padding-left: 4em !important; padding-right: 4em !important;} .py-8{padding-top: 4em !important; padding-bottom: 4em !important;}
.pt-8{padding-top: 4em !important;} .pb-8{padding-bottom: 4em !important;} .pl-8{padding-left: 4em !important;} .pr-8{padding-right: 4em !important;}

.p-9{padding: 4.5em !important;} .px-9{padding-left: 4.5em !important; padding-right: 4.5em !important;} .py-9{padding-top: 4.5em !important; padding-bottom: 4.5em !important;}
.pt-9{padding-top: 4.5em !important;} .pb-9{padding-bottom: 4.5em !important;} .pl-9{padding-left: 4.5em !important;} .pr-9{padding-right: 4.5em !important;}

.p-10{padding: 5em !important;} .px-10{padding-left: 5em !important; padding-right: 5em !important;} .py-10{padding-top: 5em !important; padding-bottom: 5em !important;}
.pt-10{padding-top: 5em !important;} .pb-10{padding-bottom: 5em !important;} .pl-10{padding-left: 5em !important;} .pr-10{padding-right: 5em !important;}

.p-15{padding: 7.5em !important;} .px-15{padding-left: 7.5em !important; padding-right: 7.5em !important;} .py-15{padding-top: 7.5em !important; padding-bottom: 7.5em !important;}
.pt-15{padding-top: 7.5em !important;} .pb-15{padding-bottom: 7.5em !important;} .pl-15{padding-left: 7.5em !important;} .pr-15{padding-right: 7.5em !important;}

.p-20{padding: 10em !important;} .px-20{padding-left: 10em !important; padding-right: 10em !important;} .py-20{padding-top: 10em !important; padding-bottom: 10em !important;}
.pt-20{padding-top: 10em !important;} .pb-20{padding-bottom: 10em !important;} .pl-20{padding-left: 10em !important;} .pr-20{padding-right: 10em !important;}
/* PADDINGS END */

/* MARGINS */
.m-auto{margin: auto !important;} .mx-auto{margin-left: auto !important; margin-right: auto !important;} .my-auto{margin-top: auto !important; margin-bottom: auto !important;}
.mt-auto{margin-top: auto !important;} .mb-auto{margin-bottom: auto !important;} .ml-auto{margin-left: auto !important;} .mr-auto{margin-right: auto !important;}

.m-0{margin: 0 !important;} .mx-0{margin-left: 0 !important; margin-right: 0 !important;} .my-0{margin-top: 0 !important; margin-bottom: 0 !important;}
.mt-0{margin-top: 0 !important;} .mb-0{margin-bottom: 0!important;} .ml-0{margin-left: 0 !important;} .mr-0{margin-right: 0 !important;}

.m-05{margin: 0.25em !important;} .mx-05{margin-left: 0.25em !important; margin-right: 0.25em !important;} .my-05{margin-top: 0.25em !important; margin-bottom: 0.25em !important;}
.mt-05{margin-top: 0.25em !important;} .mb-05{margin-bottom: 0.25em !important;} .ml-05{margin-left: 0.25em !important;} .mr-05{margin-right: 0.25em !important;}

.m-1{margin: 0.5em !important;} .mx-1{margin-left: 0.5em !important; margin-right: 0.5em !important;} .my-1{margin-top: 0.5em !important; margin-bottom: 0.5em !important;}
.mt-1{margin-top: 0.5em !important;} .mb-1{margin-bottom: 0.5em !important;} .ml-1{margin-left: 0.5em !important;} .mr-1{margin-right: 0.5em !important;}

.m-2{margin: 1em !important;} .mx-2{margin-left: 1em !important; margin-right: 1em !important;} .my-2{margin-top: 1em !important; margin-bottom: 1em !important;}
.mt-2{margin-top: 1em !important;} .mb-2{margin-bottom: 1em !important;} .ml-2{margin-left: 1em !important;} .mr-2{margin-right: 1em !important;}

.m-3{margin: 1.5em !important;} .mx-3{margin-left: 1.5em !important; margin-right: 1.5em !important;} .my-3{margin-top: 1.5em !important; margin-bottom: 1.5em !important;}
.mt-3{margin-top: 1.5em !important;} .mb-3{margin-bottom: 1.5em !important;} .ml-3{margin-left: 1.5em !important;} .mr-3{margin-right: 1.5em !important;}

.m-4{margin: 2em !important;} .mx-4{margin-left: 2em !important; margin-right: 2em !important;} .my-4{margin-top: 2em !important; margin-bottom: 2em !important;}
.mt-4{margin-top: 2em !important;} .mb-4{margin-bottom: 2em !important;} .ml-4{margin-left: 2em !important;} .mr-4{margin-right: 2em !important;}

.m-5{margin: 2.5em !important;} .mx-5{margin-left: 2.5em !important; margin-right: 2.5em !important;} .my-5{margin-top: 2.5em !important; margin-bottom: 2.5em !important;}
.mt-5{margin-top: 2.5em !important;} .mb-5{margin-bottom: 2.5em !important;} .ml-5{margin-left: 2.5em !important;} .mr-5{margin-right: 2.5em !important;}

.m-6{margin: 3em !important;} .mx-6{margin-left: 3em !important; margin-right: 3em !important;} .my-6{margin-top: 3em !important; margin-bottom: 3em !important;}
.mt-6{margin-top: 3em !important;} .mb-6{margin-bottom: 3em !important;} .ml-6{margin-left: 3em !important;} .mr-6{margin-right: 3em !important;}

.m-7{margin: 3.5em !important;} .mx-7{margin-left: 3.5em !important; margin-right: 3.5em !important;} .my-7{margin-top: 3.5em !important; margin-bottom: 3.5em !important;}
.mt-7{margin-top: 3.5em !important;} .mb-7{margin-bottom: 3.5em !important;} .ml-7{margin-left: 3.5em !important;} .mr-7{margin-right: 3.5em !important;}

.m-8{margin: 4em !important;} .mx-8{margin-left: 4em !important; margin-right: 4em !important;} .my-8{margin-top: 4em !important; margin-bottom: 4em !important;}
.mt-8{margin-top: 4em !important;} .mb-8{margin-bottom: 4em !important;} .ml-8{margin-left: 4em !important;} .mr-8{margin-right: 4em !important;}

.m-9{margin: 4.5em !important;} .mx-9{margin-left: 4.5em !important; margin-right: 4.5em !important;} .my-9{margin-top: 4.5em !important; margin-bottom: 4.5em !important;}
.mt-9{margin-top: 4.5em !important;} .mb-9{margin-bottom: 4.5em !important;} .ml-9{margin-left: 4.5em !important;} .mr-9{margin-right: 4.5em !important;}

.m-10{margin: 5em !important;} .mx-10{margin-left: 5em !important; margin-right: 5em !important;} .my-10{margin-top: 5em !important; margin-bottom: 5em !important;}
.mt-10{margin-top: 5em !important;} .mb-10{margin-bottom: 5em !important;} .ml-10{margin-left: 5em !important;} .mr-10{margin-right: 5em !important;}

.m-15{margin: 7.5em !important;} .mx-15{margin-left: 7.5em !important; margin-right: 7.5em !important;} .my-15{margin-top: 7.5em !important; margin-bottom: 7.5em !important;}
.mt-15{margin-top: 7.5em !important;} .mb-15{margin-bottom: 7.5em !important;} .ml-15{margin-left: 7.5em !important;} .mr-15{margin-right: 7.5em !important;}

.m-20{margin: 10em !important;} .mx-20{margin-left: 10em !important; margin-right: 10em !important;} .my-20{margin-top: 10em !important; margin-bottom: 10em !important;}
.mt-20{margin-top: 10em !important;} .mb-20{margin-bottom: 10em !important;} .ml-20{margin-left: 10em !important;} .mr-20{margin-right: 10em !important;}
/* MARGINS END */

/*Z-INDEX*/
.z-index-1{z-index: 1 !important;}
.z-index-2{z-index: 2 !important;}
.z-index-3{z-index: 3 !important;}
.z-index-4{z-index: 4 !important;}
.z-index-5{z-index: 5 !important;}

/*OTHERS*/
.uppercase{text-transform: uppercase;}
.o-hidden{overflow: hidden !important;}
body.dark .secondary-text{color: var(--SECONDARY-LIGHTEN) !important;}
/*OTHERS END*/

/*COLORS*/
.whatsapp{background: var(--WHATSAPP) !important;}
.twitter{background: var(--TWITTER) !important;}
.instagram{background: var(--INSTAGRAM) !important;}
.facebook{background: var(--FACEBOOK) !important;}
.grey-text{color: var(--HALF-GREY) !important;}
/*COLORS END*/

/*BACKGROUNDS*/
.back-layer, .back-nackground{background-color: var(--BACK-COLOR) !important;}
.back-layer-1{background-color: var(--BACK-LAYER-1) !important;}
.back-layer-2{background-color: var(--BACK-LAYER-2) !important;}
.back-layer-3{background-color: var(--BACK-LAYER-3) !important;}
/*BACKGROUNDS END*/

/*LAZY LOAD*/
.lazy{opacity: 0;}
.lazy.loaded, .flickity-bg-lazyloaded{ animation: fade_in 0.5s ease; opacity: 1; }
@keyframes fade_in{ 0%{opacity: 0;} 100%{opacity: 1;} }
/*LAZY LOAD END*/

/*DISPLAY*/
.block{display:block !important;}
.inline-block{display: inline-block !important;}
.flex{display:inline-flex !important;}
/*DISPLAY END*/

/*FLEX DIR*/
.flex-column{flex-direction: column !important;}
.flex-row{flex-direction: row !important;}
.space-between{justify-content: space-between !important;}
/*FLEX DIR END*/

.disabled{cursor: default; pointer-events: none; opacity: 0.5;}
.text-wrap{white-space: pre-wrap !important;}
.truncate{white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;}
.text-truncate{
    display: -webkit-box!important;
    -webkit-box-orient: vertical!important;
    overflow: hidden!important;
}
.text-truncate.lines-1{-webkit-line-clamp: 1;}
.text-truncate.lines-2{-webkit-line-clamp: 2;}
.text-truncate.lines-3{-webkit-line-clamp: 3;}
.text-truncate.lines-4{-webkit-line-clamp: 4;}
.text-truncate.lines-5{-webkit-line-clamp: 5;}
.extra-width{
    inline-size: 48rem !important;
    max-inline-size: 100%;
}
.max-width{
    /*inline-size: 64rem !important;*/
    inline-size: 100% !important;
    max-inline-size: 1280px;
}
.tiny-height{
    block-size: 8rem !important;
}
.inverted{
    background-color: var(--inverse-surface) !important;
    color: var(--inverse-on-surface) !important;
}
.image-circle > img,
img.image-circle{
    border-radius: 50%;
    width: 5rem; height: 5rem;
    object-fit: cover;
}
.image-circle-small > img,
img.image-circle-small{
    width: 3rem; height: 3rem;
}
/* HELPERS END */
.text-justify{ text-align: justify; }
.text-pre-wrap{ white-space: pre-wrap; }
.text-weak{ color: var(--TEXT-WEAK) !important; }

:is(button,.button):not(.border,.chip):hover {
    box-shadow: none !important;
}

.response.get-response:not(.success):not(.error){
    padding: 0; margin: 0; border: none; border-radius: 0;
}
.response{
    padding: 1em; margin: 0 0 2em 0;
    border: 1px solid rgba(128,128,128,0.5);
    border-radius: 0.5rem;
    display: none;
}
.response.display{
    display: block;
}
.success{
    border-color: #66bb6a !important;
    color: #66bb6a !important;
}
.avatar{
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
}
.avatar img{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.ajax-loading{
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}
    .ajax-loading > progress{
        position: absolute;
    }

/* highcharts */
.highcharts-tooltip-container{z-index:1000000 !important;}

.image-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-container img{
    max-width: 100%; max-height: 100%;
}
.image-container.small{height: 100px;}
.image-container.medium{height: 200px;}
.image-container.large{height: 300px;}

.sortable-placeholder{
    min-height: 10em;
    background-color: rgba(128,128,128,0.25);
    width: 100%;
}
/*HEADER NAV*/
.app-header > div:nth-child(1){ flex: 1; }
.app-header > div:nth-child(2){ flex: 3; }
.app-header > div:nth-child(3){ flex: 1; }
body > header{
    min-block-size: 5rem;
}
.header-nav{
    background: var(--FILL-COLOR);
    display: inline-grid;
    grid-gap: 0.25em;
    padding: 0.25em;
}
    body.dark .header-nav{
        /*background: rgba(205,47,124,0.15);*/
    }
    .header-nav > a,
    .header-nav > button{
        white-space: nowrap;
        padding: 0 1em;
        font-size: 0.9em;
        min-height: 2.5rem;
    }
    .header-nav > a,
    .header-nav > button > span{
        color: var(--TEXT-WEAK);
    }
    .header-nav > a.active{
        background-color: var(--inverse-surface);
        color: var(--inverse-on-surface);
    }
.light-dark-toggle{
    border-radius: 100%;
    background-color: rgba(205,47,124,0.1);
    
}


.fill-themed{
    background-color: var(--FILL-COLOR);
}

/*POST CARD SIMPLE*/
.blog-small-card{
    display: flex;
    width: 100%;
    border-radius: 0.75rem;
    /*background: var(--FILL-COLOR);*/
    padding: 0;
    height: 6rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
    .blog-small-card .cover-image{
        width: 6rem;
        height: 6rem;
        border-radius: inherit;
        flex-shrink: 0;
    }
    .blog-small-card .cover-image img{
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .blog-small-card .content{
        padding: 1rem;
        width: 100%;
    }
    .blog-small-card .content h3{
        font-size: 1rem;
        display: -webkit-box!important;
        -webkit-box-orient: vertical!important;
        overflow: hidden!important;
        -webkit-line-clamp: 2;
        /*color: var(--TEXT-PRIMARY);*/
        border-radius: 0;
    }
    .blog-small-card .content small{
        color: var(--TEXT-WEAK);
    }
    .blog-small-card .content .tags{
        display: -webkit-box!important;
        -webkit-box-orient: vertical!important;
        overflow: hidden!important;
        -webkit-line-clamp: 1;
    }
    .blog-small-card .content .tags > span,
    .blog-small-card .content .tags > span > i{
        font-size: 0.6rem;
        color: var(--TEXT-WEAK);
    }
    .blog-small-card .content .tags > span{
        background: var(--FILL-COLOR);
        padding: 0.25rem 0.5rem;
        margin-right: 0.25rem;
    }
/*POST CARD*/
.blog-card{
    display: flex;
    width: 100%;
    border-radius: 0.75rem;
    /*background: var(--FILL-COLOR);*/
    padding: 0;
    height: 8rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
    .blog-card .cover-image{
        width: 8rem;
        height: 8rem;
        border-radius: inherit;
        flex-shrink: 0;
    }
    .blog-card .cover-image img{
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .blog-card .content{
        padding: 1rem;
        width: 100%;
    }
    .blog-card .content h3{
        font-size: 1rem;
        display: -webkit-box!important;
        -webkit-box-orient: vertical!important;
        overflow: hidden!important;
        -webkit-line-clamp: 2;
        /*color: var(--TEXT-PRIMARY);*/
        border-radius: 0;
    }
    .blog-card .content p{
        font-size: 0.7rem;
        line-height: 1rem;
        margin: 0.5rem 0;
        display: -webkit-box!important;
        -webkit-box-orient: vertical!important;
        overflow: hidden!important;
        -webkit-line-clamp: 2;
        color: var(--TEXT-WEAK);
        border-radius: 0;
    }
    .blog-card .content small{
        color: var(--TEXT-WEAK);
    }
    .blog-card .content .tags{
        display: -webkit-box!important;
        -webkit-box-orient: vertical!important;
        overflow: hidden!important;
        -webkit-line-clamp: 1;
    }
    .blog-card .content .tags > span,
    .blog-card .content .tags > span > i{
        font-size: 0.6rem;
        color: var(--TEXT-WEAK);
    }
    .blog-card .content .tags > span{
        background: var(--FILL-COLOR);
        padding: 0.25rem 0.5rem;
        margin-right: 0.25rem;
    }
/*POST CARD*/
.list-card{
    display: flex;
    width: 100%;
    border-radius: 0.75rem;
    /*background: var(--FILL-COLOR);*/
    padding: 0;
    /*height: 9rem;*/
    margin-top: 2rem;
    margin-bottom: 2rem;
}
    .list-card .cover-image{
        width: 9rem;
        height: 9rem;
        border-radius: inherit;
        flex-shrink: 0;
    }
    .list-card .cover-image img{
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .list-card .content{
        padding: 1rem;
        width: 100%;
    }
    .list-card .content h3{
        font-size: 1.2rem;
        display: -webkit-box!important;
        -webkit-box-orient: vertical!important;
        overflow: hidden!important;
        -webkit-line-clamp: 2;
        /*color: var(--TEXT-PRIMARY);*/
        border-radius: 0;
    }
    .list-card .content p{
        font-size: 0.9rem;
        line-height: 1rem;
        margin: 0.5rem 0;
        display: -webkit-box!important;
        -webkit-box-orient: vertical!important;
        overflow: hidden!important;
        -webkit-line-clamp: 2;
        color: var(--TEXT-WEAK);
        border-radius: 0;
    }
    .list-card .content small{
        color: var(--TEXT-WEAK);
    }
    .list-card .content .tags{
        display: -webkit-box!important;
        -webkit-box-orient: vertical!important;
        overflow: hidden!important;
        -webkit-line-clamp: 1;
    }
    .list-card .content .tags > span,
    .list-card .content .tags > span > i{
        font-size: 0.6rem;
        color: var(--TEXT-WEAK);
    }
    .list-card .content .tags > span{
        background: var(--FILL-COLOR);
        padding: 0.25rem 0.5rem;
        margin-right: 0.25rem;
    }
    .list-card .content .pics-collection{
        display: flex;
        margin-top: 1rem;
    }
.pics-collection > img{
    width: 2rem; height: 2rem;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(128,128,128,0.25);
    margin-left: -0.5rem;
}
.pics-collection > img:nth-child(1){
    margin-left: 0;
}
/*POST SQUARE CARD*/
.square-posts-container{
    display: grid;
    position: relative;
    width: 100%;
    grid-gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 0;
}
    .square-posts-container.cols-2{
        grid-template-columns: repeat(2, 1fr);
    }
    .square-posts-container.cols-3{
        grid-template-columns: repeat(3, 1fr);
    }
    .square-posts-container.cols-4{
        grid-template-columns: repeat(4, 1fr);
    }

.hero-container{
    display: grid;
    position: relative;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
    margin: 1rem 0;
}
    .hero-container .blog-square-card:nth-child(1){
        grid-area: span 2 / span 2;
    }
.blog-square-card{
    width: 100%;
    padding-top: 100%;
    border-radius: 1.5rem;
    background: var(--FILL-COLOR);
}
    .blog-square-card .container{
        display: block;
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .blog-square-card .container > img{
        display: block;
        position: absolute;
        left: 0; top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    .blog-square-card .container .date{
        background-color: var(--inverse-surface);
        color: var(--inverse-on-surface);
        font-size: 0.6rem;
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 2;
        border-radius: 0.75rem;
        padding: 0.1rem 0.5rem;
    }
    .blog-square-card .container .title{
        display: flex;
        position: absolute;
        width: 100%;
        left: 0; bottom: 0;
        padding: 0;
        background-image: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.25), transparent) !important;
        border-radius: 0;
        align-items: flex-end;
    }
    .blog-square-card .container .title > h3{
        color: white;
        display: -webkit-box!important;
        -webkit-box-orient: vertical!important;
        overflow: hidden!important;
        -webkit-line-clamp: 2;
        font-size: 1.25rem;
        padding: 1rem;
        line-height: 1.5rem;
        padding-bottom: 0; 
        margin-bottom: 1rem;
        width: 100%;
        border-radius: 0;
    }
    .blog-square-card .container .enter{
        /*background-color: var(--inverse-surface);
        color: var(--inverse-on-surface);*/
        background-color: var(--FILL-COLOR);
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        width: 4rem; height: 4rem;
        border-radius: 50%;
        z-index: 1;
    }
    .blog-square-card .container > img,
    .blog-square-card .container .title{
        border-bottom-right-radius: 3rem;
    }

    .blog-square-card .container .curve{
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        background: var(--BACK-COLOR);
        width: 5rem; height: 5rem;
        right: 0; bottom: 0;
        border-radius: 0;
        border-top-left-radius: 2rem;
        flex-shrink: 0;
    }
        .blog-square-card .container .curve:before{
            content: '';
            height: 100%;
            width: 100%;
            display: block;
            position: absolute;
            background: transparent;
            bottom: 100%; left: 0;
            border-bottom-right-radius: 2rem;
            box-shadow: 2.5rem 1.25rem 0 0 var(--BACK-COLOR);
        }
        .blog-square-card .container .curve:after{
            content: '';
            height: 100%;
            width: 100%;
            display: block;
            position: absolute;
            background: transparent;
            bottom: 0; right: 100%;
            border-bottom-right-radius: 2rem;
            box-shadow: 1.25rem 2.5rem 0 0 var(--BACK-COLOR);
        }
.small-squares .blog-square-card .title > h3{
    font-size: 1rem;
    line-height: 1.25rem;
    -webkit-line-clamp: 3;
    padding: 0.5rem;
    padding-bottom: 0rem;
}
.small-squares .blog-square-card .container .enter{
    width: 2.5rem; height: 2.5rem;
}
.small-squares .blog-square-card .container .curve{
    width: 3.25rem; height: 3.25rem;
    border-top-left-radius: 45%;
}
.small-squares .blog-square-card .container .curve:before{
    border-bottom-right-radius: 1rem;
    box-shadow: 1.625rem 0.8125rem 0 0 var(--BACK-COLOR);
}
.small-squares .blog-square-card .container .curve:after{
    border-bottom-right-radius: 1rem;
    box-shadow: 0.8125rem 1.625rem 0 0 var(--BACK-COLOR);
}
/*LIST ITEM*/
.list-item{
    display: flex;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    align-items: center;
}
    .list-item > span{
        font-size: 1rem;
        flex-shrink: 0;
        width: 2rem;
    }
    .list-item > h6,
    .list-item > h2{
        font-size: 1rem;
        width: 100%;
        margin: 0;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
        .list-item.large-item > h6,
        .list-item.large-item > h2{
            white-space: normal;
        }
    .list-item > img{
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
        margin-left: 0.5rem;
    }
/*VIEW POST STYLES*/
.post-image{
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 1.5rem;
}
.post-content{
    display: block;
    width: 100%;
}
    .post-content img {
        max-width: 100%;
        max-height: max-content;
        border-radius: 1.5rem;
    }
/*RESPONSIVE*/
@media screen and (max-width: 900px){
    .hero-container{
        grid-template-columns: repeat(3, 1fr);
        margin: 0;
    }
    .hero-container .blog-square-card:nth-child(n+4){
        display: none;
    }
}
@media screen and (max-width: 700px){
    body > header{
        min-block-size: 4rem;
    }
    .hero-container{
        grid-template-columns: repeat(2, 1fr);
        margin: 0;
    }
    .blog-square-card .container .title > h3{
        font-size: 1rem;
    }
    .blog-square-card .container .enter{
        width: 3.5rem; height: 3.5rem;
    }
    .blog-square-card .container .curve{
        width: 4rem; height: 4rem;
    }
    .blog-square-card .container .curve:before{
        border-bottom-right-radius: 1.6rem;
    }
    .blog-square-card .container .curve:after{
        border-bottom-right-radius: 1.6rem;
    }
}
@media screen and (max-width: 600px){

}
/*MOVIL MEDIANO*/
@media screen and (max-width: 450px){

    
}
@media screen and (max-width: 350px){
}




