@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@font-face {
    font-family: 'Blair ITC Medium';
    src: url('./fonts/blair-itc-medium.ttf') format('truetype');
}

@font-face {
    font-family: 'DIN Condensed Bold';
    src: url('./fonts/din-condensed-bold.ttf') format('truetype');
}

* {
    font-family: Arial, Helvetica, sans-serif;
    color: gray;
    /* border: 1px solid red; */
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
}

a {
    text-decoration: none;
}

span {
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
}

p {
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    text-align: inherit;
}

nav {
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
}

ul {
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
}

li {
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
}

li>a {
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
}

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

.text-justify {
    text-align: justify;
}

.text-right {
    text-align: center;
}

.line-ml {
    line-height: 1.5;
}

.font-blair {
    font-family: 'Blair ITC Medium';
}

.font-din {
    font-family: 'DIN Condensed Bold';
}

.font-hel {
    font-family: Helvetica;
}

.font-bold {
    font-weight: bold;
}

.font-italic {
    font-style: italic;
}

.font-sm {
    font-size: 1.2vw;
}

.font-m {
    font-size: 1.6vw;
}

.font-ml {
    font-size: 1.75vw;
}

.font-l {
    font-size: 2vw;
}

.font-xl {
    font-size: 2.5vw;
}

.font-xxl {
    font-size: 3vw;
}

.font-3xl {
    font-size: 4vw;
}

.font-4xl {
    font-size: 5vw;
}

.font-5xl {
    font-size: 6vw;
}

.font-6xl {
    font-size: 7vw;
}

.font-7xl {
    font-size: 8vw;
}

.font-8xl {
    font-size: 9vw;
}

.font-9xl {
    font-size: 10vw;
}

.font-thin {
    font-weight: 100;
}

.font-spacing-m {
    letter-spacing: .1vw;
}

.font-spacing-ml {
    letter-spacing: .2vw;
}

.font-spacing-l {
    letter-spacing: .4vw;
}

.color-orange {
    color: orange;
}

.color-tomato {
    color: tomato;
}

.color-red {
    color: red;
}

.color-white {
    color: white;
}

.color-gray {
    color: gray;
}

.color-lightgray {
    color: silver;
}

.color-black {
    color: black;
}

.burger {
    padding: .15rem;
    width: 3rem;
    height: 3rem;
    box-sizing: border-box;
    position: fixed;
    top: 2vh;
    left: 1vw;
}

.burger:hover {
    cursor: pointer;
}

.burger__slice {
    width: 2vw;
    height: .24vw;
    background-color: lightgray;
    border-radius: .2vw;
    /* position: absolute; */
    margin: .5vw;
}

.burger>.burger__slice:first-child {
    top: 1vw;
    transition: transform .5s ease .1s;
    transform-origin: center left;
    transform: rotate(0deg);
}

.burger>.burger__slice:nth-child(2) {
    top: 1.75rem;
    transition: background-color .5s ease .1s;
    background-color: lightgray;
}

.burger>.burger__slice:last-child {
    top: 2.5rem;
    transition: transform .5s ease .1s;
    transform-origin: center left;
    transform: rotate(0deg);
}

.burger.on>.burger__slice:first-child {
    transition: transform .5s ease .1s;
    transform-origin: center left;
    transform: rotate(405deg);
}

.burger.on>.burger__slice:nth-child(2) {
    transition: background-color .5s ease .1s;
    background-color: transparent;
}

.burger.on>.burger__slice:last-child {
    transition: transform .5s ease .1s;
    transform-origin: center left;
    transform: rotate(-405deg);
}

.sidebar {
    width: 25vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100vw;
    transition: left .5s ease .1s;
    font-size: 1rem;
    padding-top: 1vh;
    background-color: rgba(0, 0, 0, .75);
}

.sidebar__top-image {
    position: relative;
    left: -2vw;
    width: 6vw;
}

.sidebar__bottom-image {
    position: relative;
    left: -2vw;
    width: 6vw;
}

/* @media only screen and (min-device-width: 480px) {
    .sidebar {
        width: 25vw;
        font-size: 1.2rem;
    }
} */

.sidebar>span {
    display: block;
    margin-top: 2.5rem;
    margin-left: 2.5rem;
}

.sidebar.on {
    left: 0;
    transition: left .5s ease .1s;
}

.sidebar>div>nav>ul {
    list-style-type: none;
    padding-left: 0vw;
}

.sidebar>div>nav>ul>li>ul {
    /* list-style-type: disc; */
    list-style-type: none;
    color: white;
    padding-left: 1.1vw;
    margin-top: .75vw;
}

.sidebar>div>nav>ul>li>ul>li:before {
    content: "•";
    font-size: 1vw;
    padding-right: .5vw;
}

.perculights-link {
    display: inline-block;
    vertical-align: middle;
    color: transparent;
    width: 9vw;
    margin-bottom: .5vw;
    background-size: contain;
    background-repeat: no-repeat;
}

.sidebar>div>nav>ul>li>ul>li>a.perculights-link {
    background-image: url(./menu/perculights-white.png)
}

.sidebar>div>nav>ul>li>ul>li>a.perculights-link:hover {
    background-image: url(./menu/perculights-grey.png);
    color: transparent;
}

.sidebar>div>nav>ul>li>ul>li.color-red>span.perculights-link {
    background-image: url(./menu/perculights-red.png)
}

.vibra-link {
    display: inline-block;
    vertical-align: middle;
    color: transparent;
    width: 6vw;
    margin-top: .5vw;
    margin-bottom: 1.5vw;
    background-size: contain;
    background-repeat: no-repeat;
}

.sidebar>div>nav>ul>li>ul>li>a.vibra-link {
    background-image: url(./menu/vibra-white.png)
}

.sidebar>div>nav>ul>li>ul>li>a.vibra-link:hover {
    background-image: url(./menu/vibra-grey.png);
    color: transparent;
}

.sidebar>div>nav>ul>li>ul>li.color-red>span.vibra-link {
    background-image: url(./menu/vibra-red.png)
}

.sidebar li {
    line-height: 2.5vw;
}

.sidebar a {
    text-decoration: none;
}

.sidebar a:hover {
    color: lightgray;
}

.lang {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
    width: 12vw;
    position: fixed;
    top: 2vw;
    right: 2vw;
}

.lang__button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: gray;
    color: black;
    padding: .1vw 1vw;
    font-family: 'Blair ITC Medium';
    font-size: .75vw;
    height: 1.2vw;
}

.lang__button:hover {
    background-color: darkgray;
}

.lang__button--selected {
    background-color: lightgray;
}

.lang__button--selected:hover {
    background-color: lightgray;
}

.lang__button--es {
    border-radius: 1rem 0rem 0rem 1rem;
}

.lang__button--cat {
    border-width: 0 1px 0 1px;
    border-style: solid;
    border-color: lightgray;
}

.lang__button--en {
    border-radius: 0rem 1rem 1rem 0rem;
}