body:not([data-template="landing"]) header .--bg:nth-of-type(1) {background: linear-gradient(0deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 1) 60%);}

header .--bg:nth-of-type(2) {
    background: transparent;
    mask: linear-gradient(to bottom, black 70%, transparent 100%);
    backdrop-filter: blur(2px);
}

@media only screen and (min-width: 768px) {
    header .--bg:nth-of-type(2) {
        mask: linear-gradient(to bottom, black 70%, transparent 100%);
    }
}

@media only screen and (min-width: 1096px) {
    body:not([data-template="landing"]) footer .--bg:nth-of-type(1) {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 1) 60%);
    }
    footer .--bg:nth-of-type(2) {
        background: transparent;
        mask: linear-gradient(to top, black 70%, transparent 100%);
        backdrop-filter: blur(2px);
    }
}

/* 
BUTTON
*/
.button.t-small {
    padding: .5em;
    border-radius: 4px;
}

.button.t-medium {
    padding: .75rem;
    border-radius: 6px;
}

.button.--light {
    background: rgba(210, 210, 210, .28);
    backdrop-filter: blur(.7rem);
    -webkit-backdrop-filter: blur(.7rem);
    color: rgba(0, 0, 0, .3) !important;
}

.button.--dark {
    background: rgba(150, 150, 150, .25);
    backdrop-filter: blur(.7rem);
    -webkit-backdrop-filter: blur(.7rem);
    color: rgba(255, 255, 255, .75) !important;
}

/* --CLOSE */
.button-close {
    width: 1.5rem;
    height: 1.5rem;
}

.button-close div {
    top: 0;
    width: 32px;
    height: 1.5px;
    background: var(--c-black);
}

.button-close div:nth-of-type(1) {transform: translate(-4px, 12px) rotate(45deg);}
.button-close div:nth-of-type(2) {transform: translate(-4px, 12px) rotate(-45deg);}